nconf-lite/lib/nconf/utils.js

16 lines
252 B
JavaScript
Raw Normal View History

/*
* utils.js: Utils for the nconf module.
*
* (C) 2011, Charlie Robbins
*
*/
var utils = exports;
utils.key = function () {
return Array.prototype.slice.call(arguments).join(':');
};
utils.path = function (key) {
return key.split(':');
};