Files
menui_backend/node_modules/is-in-browser
2020-07-15 19:54:48 +02:00
..
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02:00
2020-07-15 19:54:48 +02: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) { //... }