nconf
nconf copied to clipboard
Negative numbers are read incorrectly from command-line
An example:
var conf = nconf.argv().get();
console.log(conf.cache);
It works: --cache=12
It works: --cache 12
It works: --cache=-12
It doesn't work: --cache -12
:+1: