Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md « util-extend « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be03922ab0261391b15201a10d5919c25f264f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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.
}
```