mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-12-29 10:19:11 +00:00
.. | ||
extend.js | ||
LICENSE | ||
package.json | ||
README.md | ||
test.js |
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.
}