lucaconte 7cc26e831d presentations 6 лет назад
..
LICENSE 7cc26e831d presentations 6 лет назад
README.md 7cc26e831d presentations 6 лет назад
extend.js 7cc26e831d presentations 6 лет назад
package.json 7cc26e831d presentations 6 лет назад
test.js 7cc26e831d presentations 6 лет назад

README.md

util-extend

The Node object extending function that Node uses for Node!

Usage

var extend = require('util-extend');
function functionThatTakesOptions(options) {
  var options = extend(defaults, options);
  // now any unset options are set to the defaults.
}