root 3bf41bf355 update 2 anni fa
..
LICENSE 3bf41bf355 update 2 anni fa
README.md 3bf41bf355 update 2 anni fa
extend.js 3bf41bf355 update 2 anni fa
package.json 3bf41bf355 update 2 anni fa
test.js 3bf41bf355 update 2 anni fa

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