root 3bf41bf355 update il y a 3 ans
..
LICENSE 3bf41bf355 update il y a 3 ans
README.md 3bf41bf355 update il y a 3 ans
extend.js 3bf41bf355 update il y a 3 ans
package.json 3bf41bf355 update il y a 3 ans
test.js 3bf41bf355 update il y a 3 ans

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