nconf icon indicating copy to clipboard operation
nconf copied to clipboard

Hierarchical configuration correctness depends on implementation specifics of javascript engines

Open polomsky opened this issue 9 years ago • 0 comments

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

polomsky avatar Jan 10 '17 17:01 polomsky