UNPKG

nopt-defaults

Version:
9 lines (8 loc) 219 B
module.exports = function (options, defaults) { Object.keys(defaults).forEach(function (opt) { if (!Object.prototype.hasOwnProperty.call(options, opt)) { options[opt] = defaults[opt]; } }); return options; };