mirror of https://github.com/nodejs/node.git
1223cafea6 | ||
---|---|---|
.. | ||
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.
}