sindresorhus/conf
The issue has been solved
Add feature to disable dot-notation #44
Xylobol posted onGitHub
Hi! I'm working on a project that uses reverse-domain naming for namespaces, and we need to store some data with the namespace as the key. Where we'd expect
{
"cc.xylobol.test": {
"foo": "bar"
}
}
we end up with
{
"cc": {
"xylobol": {
"test": {
"foo": "bar"
}
}
}
}
instead due to the dot-notation. Is there a pre-existing way to disable this? If not, could it be added as a feature?
Thank you in advanced. Xylobol