mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
.. | ||
dist | ||
src | ||
test | ||
.babelrc | ||
.eslintrc | ||
.npmignore | ||
package.json | ||
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) { //... }