nconf
nconf copied to clipboard
Hierarchical configuration correctness depends on implementation specifics of javascript engines
For hierarchical configuration Object.keys method is used for ensuring order of configuration. This method has same order as for..in which does not guarantee order of properties - written in javascript standard. The reason why this works now is that existing javascript engines returns input in insertion order but program should not rely on this behaviour.
additional information