|
|
||
|---|---|---|
| .. | ||
| LICENSE | ||
| README.md | ||
| extend.js | ||
| package.json | ||
| test.js | ||
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.
}