Distopico Vegan 9e639edc8d | 6 years ago | |
---|---|---|
.. | ||
LICENSE | 6 years ago | |
README.md | 6 years ago | |
extend.js | 6 years ago | |
package.json | 6 years ago | |
test.js | 6 years ago |
The Node object extending function that Node uses for Node!
var extend = require('util-extend');
function functionThatTakesOptions(options) {
var options = extend(defaults, options);
// now any unset options are set to the defaults.
}