1 | # lodash.merge v4.6.2
|
2 |
|
3 | The [Lodash](https://lodash.com/) method `_.merge` exported as a [Node.js](https://nodejs.org/) module.
|
4 |
|
5 | ## Installation
|
6 |
|
7 | Using npm:
|
8 | ```bash
|
9 | $ {sudo -H} npm i -g npm
|
10 | $ npm i --save lodash.merge
|
11 | ```
|
12 |
|
13 | In Node.js:
|
14 | ```js
|
15 | var merge = require('lodash.merge');
|
16 | ```
|
17 |
|
18 | See the [documentation](https://lodash.com/docs#merge) or [package source](https://github.com/lodash/lodash/blob/4.6.2-npm-packages/lodash.merge) for more details.
|