Skip to content
 
 

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Browser or Node.js

Build Status npm version License: MIT

Check whether the code is running in the browser or node.js runtime.

Install

$ npm install --save browser-or-node

Usage

ES6 style import

import { isBrowser, isNode } from 'browser-or-node';

if (isBrowser) {
  // do browser only stuff
}

if (isNode) {
  // do node.js only stuff
}

ES5 style import

var jsEnv = require('browser-or-node');

if (jsEnv.isBrowser) {
  // do browser only stuff
}

if (jsEnv.isNode) {
  // do node.js only stuff
}

License

MIT © Dineshkumar Pandiyan

About

Check where the code is running in the browser or node.js

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages