uber-node / zero-config

A zero configuration configuration loader
MIT License
116 stars 10 forks source link

config.set should not change value type when it's array #25

Closed anson627 closed 9 years ago

anson627 commented 9 years ago

config.set(key, value) // value is an array value = config.get(key) Array.isArray(value) === false // : (

Raynos commented 9 years ago

The problem is with the deep-extend module and it not supporting arrays.

anson627 commented 9 years ago

understood.