backoffice/node_modules/util-extend/README.md

14 lines
275 B
Markdown
Raw Normal View History

2020-02-06 10:09:39 +00:00
# util-extend
The Node object extending function that Node uses for Node!
## Usage
```js
var extend = require('util-extend');
function functionThatTakesOptions(options) {
var options = extend(defaults, options);
// now any unset options are set to the defaults.
}
```