node/deps/npm/node_modules/read-installed/node_modules/util-extend
Timothy J Fontaine 1223cafea6 npm: Upgrade to v1.4.21 2014-07-31 09:05:30 -07:00
..
README.md npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00
extend.js npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00
package.json npm: Upgrade to v1.4.21 2014-07-31 09:05:30 -07:00
test.js npm: upgrade to 1.4.6 2014-03-25 17:42:22 -07:00

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