You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit 3 years ago
..
dist First Commit 3 years ago
src First Commit 3 years ago
test First Commit 3 years ago
.babelrc First Commit 3 years ago
.eslintrc First Commit 3 years ago
.npmignore First Commit 3 years ago
package.json First Commit 3 years ago
readme.md First Commit 3 years ago

readme.md

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) { //... }