mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-21 12:00:15 -04:00
232 B
232 B
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) { //... }