• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# util-extend
2
3The Node object extending function that Node uses for Node!
4
5## Usage
6
7```js
8var extend = require('util-extend');
9function functionThatTakesOptions(options) {
10  var options = extend(defaults, options);
11  // now any unset options are set to the defaults.
12}
13```
14