root 3bf41bf355 update há 2 anos atrás
..
LICENSE 3bf41bf355 update há 2 anos atrás
README.md 3bf41bf355 update há 2 anos atrás
extend.js 3bf41bf355 update há 2 anos atrás
package.json 3bf41bf355 update há 2 anos atrás
test.js 3bf41bf355 update há 2 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.
}