import isBrowser from 'is-in-browser'; if(isBrowser) { //... }
For those not using Babel / ES6 Modules
var isBrowser = require('is-in-browser').default; if(isBrowser) { //... }