1.0.2 • Published 8 years ago

is-development v1.0.2

Weekly downloads
52
License
MIT
Repository
github
Last release
8 years ago

is-development

Detect if you are in the DEVELOPMENT mode of the nodejs

NPM version

Support us

Star this project on GitHub.

Usage ES6

import isDevelopment from 'is-development';

if (isDevelopment) {
  console.log('You are in the development mode');
}

Usage ES5

var isDevelopment = require('is-development');

if (isDevelopment) {
  console.log('You are in the development mode');
}

Try our other React components

Credits

Zlatko Fedor