Package Exports
- utils-config
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (utils-config) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
utils-config
lazy object maintenance
install
$ npm install utils-configusage
var config = require('utils-config');
var proto = {};
var init = {
hey : 'want something'
}
proto.config = config(init);
proto.config();
// { hey : 'want something'}
proto.config('hey', 'not any more');
// 'not any more'
proto.config().hey = 'come on!'
// 'come on!'
proto.config();
// { hey : 'not any more'}
var clone = proto.config({ clone : true });
var fork = proto.config({ fork : true });
fork('hey', 'ok, continue');
// 'ok, continue'
fork('hey');
// 'ok, continue'
proto.config();
// { hey : 'ok, continue' }
clone();
// { hey : 'not anymore' }