PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
nconf
/
lib
/
nconf
/* * formats.js: Default formats supported by nconf * * (C) 2011, Charlie Robbins and the Contributors. * */ var ini = require('ini'); var formats = exports; // // ### @json // Standard JSON format which pretty prints `.stringify()`. // formats.json = { stringify: function (obj, replacer, spacing) { return JSON.stringify(obj, replacer || null, spacing || 2) }, parse: JSON.parse }; // // ### @ini // Standard INI format supplied from the `ini` module // http://en.wikipedia.org/wiki/INI_file // formats.ini = ini;
[+]
..
[+]
stores
[-] common.js
[edit]
[-] formats.js
[edit]
[-] provider.js
[edit]