peach a19a732be8 commit message | vor 2 Jahren | |
---|---|---|
.. | ||
CHANGELOG.md | vor 2 Jahren | |
LICENCE | vor 2 Jahren | |
README.md | vor 2 Jahren | |
index.d.ts | vor 2 Jahren | |
index.js | vor 2 Jahren | |
package.json | vor 2 Jahren |
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