peach a19a732be8 commit message | hace 2 años | |
---|---|---|
.. | ||
CHANGELOG.md | hace 2 años | |
LICENCE | hace 2 años | |
README.md | hace 2 años | |
index.d.ts | hace 2 años | |
index.js | hace 2 años | |
package.json | hace 2 años |
Detect running environment of the current Node.js process.
Using Yarn:
yarn add std-env
Using npm:
npm i std-env
const env = require('std-env')
console.log(env)
/*
{
browser: false,
test: false,
dev: true,
production: false,
debug: false,
ci: false,
tty: true,
minimalCLI: false,
windows: false,
darwin: true,
linux: false
}
*/
MIT