0.1.0 • Published 12 years ago
node-env-flag v0.1.0
NODE-ENV-FLAG 
Little util function for simpler extracting Boolean values from ENV variables in Node.js, i.e. true values (true, TRUE, 1) vs. false values (false, FALSE, 0).
Example
var DEFAULT_FOO = 1;
var flag = require('node-env-flag');
var yep = flag(process.env.FOO, DEFAULT_FOO);
if (yep) {
console.log("Foo!")
}API
(value)flag(process.env.FOO);(value, default)flag(process.env.FOO, 1);
Installation
$ npm install node-env-flagTest
Local tests:
$ make testLicense
Released under the MIT license.
Copyright (c) Jonas Grimfelt
0.1.0
12 years ago