spaceout/front_end/node_modules/is-in-browser
2020-12-12 10:25:30 -05:00
..
dist Added Django and React Template 2020-12-12 10:25:30 -05:00
src Added Django and React Template 2020-12-12 10:25:30 -05:00
test Added Django and React Template 2020-12-12 10:25:30 -05:00
.babelrc Added Django and React Template 2020-12-12 10:25:30 -05:00
.eslintrc Added Django and React Template 2020-12-12 10:25:30 -05:00
.npmignore Added Django and React Template 2020-12-12 10:25:30 -05:00
package.json Added Django and React Template 2020-12-12 10:25:30 -05:00
readme.md Added Django and React Template 2020-12-12 10:25:30 -05:00

Is In Browser?

import isBrowser from 'is-in-browser';

if(isBrowser) {
    //...
}

CommonJS

For those not using Babel / ES6 Modules

var isBrowser = require('is-in-browser').default;

if(isBrowser) { //... }