nconf
                                
                                
                                
                                    nconf copied to clipboard
                            
                            
                            
                        disable merge object for response
I used toml to customize format.
And the date will be parse to Date Object.
The behavior of nconf will merge the response(Date Object).
How to disable it?
@fundon could you provide a code example?
e.g.
app.test.toml
date = 1979-05-27T07:32:00Z
confi.js
var toml = require('toml');
var nconf = require('nconf');
nconf.add('user', {
  type: 'file', file: __dirname + '/config/app.test.toml', format: toml
});
// get date
nconf.get('date')
// toString, return `{}`
// should return Date Object, toString return time string.
                                    
                                    
                                    
                                
ping @jcrugzz
This feels like it may be bug in the toml library you are using. We'll circle back on it.