lucaconte 7cc26e831d presentations há 6 anos atrás
..
LICENSE 7cc26e831d presentations há 6 anos atrás
README.md 7cc26e831d presentations há 6 anos atrás
extend.js 7cc26e831d presentations há 6 anos atrás
package.json 7cc26e831d presentations há 6 anos atrás
test.js 7cc26e831d presentations há 6 anos atrás

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.
}