Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit il y a 3 ans
..
dist First Commit il y a 3 ans
src First Commit il y a 3 ans
test First Commit il y a 3 ans
.babelrc First Commit il y a 3 ans
.eslintrc First Commit il y a 3 ans
.npmignore First Commit il y a 3 ans
package.json First Commit il y a 3 ans
readme.md First Commit il y a 3 ans

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