|
|
пре 3 година | |
|---|---|---|
| .. | ||
| dist | пре 3 година | |
| src | пре 3 година | |
| test | пре 3 година | |
| .babelrc | пре 3 година | |
| .eslintrc | пре 3 година | |
| .npmignore | пре 3 година | |
| package.json | пре 3 година | |
| readme.md | пре 3 година | |
import isBrowser from 'is-in-browser';
if(isBrowser) {
//...
}
For those not using Babel / ES6 Modules
var isBrowser = require('is-in-browser').default;
if(isBrowser) { //... }