gift-card-server/node_modules/is-npm/readme.md
Rodrigo Pedroso 3ac017a5ad Commit project
2019-06-19 10:46:14 -04:00

477 B

is-npm Build Status

Check if your code is running as an npm script

Install

$ npm install --save is-npm

Usage

var isNpm = require('is-npm');
console.log(isNpm);
$ node foo.js
#=> false
$ npm run foo
#=> true

License

MIT © Sindre Sorhus