tree: b1e880f95495f46809f9a5ea4bdda6208721ad64 [path history] [tgz]
  1. extend.js
  2. LICENSE
  3. package.json
  4. README.md
  5. test.js
node_modules/util-extend/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.
}