You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# merge-deep [](https://www.npmjs.com/package/merge-deep)[](https://npmjs.org/package/merge-deep)[](https://npmjs.org/package/merge-deep)[](https://travis-ci.org/jonschlinkert/merge-deep)
2
2
3
3
> Recursively merge values in a javascript object.
4
4
5
+
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
6
+
5
7
## Install
6
8
7
9
Install with [npm](https://www.npmjs.com/):
8
10
9
11
```sh
10
-
$ npm install merge-deep --save
12
+
$ npm install --save merge-deep
11
13
```
12
14
13
15
Based on [mout's](https://github.com/mout/mout) implementation of merge
*[assign-deep](https://www.npmjs.com/package/assign-deep): Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target… [more](https://www.npmjs.com/package/assign-deep) | [homepage](https://github.com/jonschlinkert/assign-deep)
29
-
*[defaults-deep](https://www.npmjs.com/package/defaults-deep): Like `extend` but recursively copies only the missing properties/values to the target object. | [homepage](https://github.com/jonschlinkert/defaults-deep)
30
-
*[extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow)
31
-
*[merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep)
32
-
*[mixin-deep](https://www.npmjs.com/package/mixin-deep): Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | [homepage](https://github.com/jonschlinkert/mixin-deep)
33
-
*[omit-deep](https://www.npmjs.com/package/omit-deep): Recursively omit the specified key or keys from an object. | [homepage](https://github.com/jonschlinkert/omit-deep)
34
-
35
-
## Contributing
31
+
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
36
32
37
-
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/merge-deep/issues/new).
33
+
</details>
38
34
39
-
## Building docs
35
+
<details>
36
+
<summary><strong>Running Tests</strong></summary>
40
37
41
-
Generate readme and API documentation with [verb](https://github.com/verbose/verb):
38
+
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
42
39
43
40
```sh
44
-
$ npm install verb && npm run docs
41
+
$ npm install && npm test
45
42
```
46
43
47
-
Or, if [verb](https://github.com/verbose/verb) is installed globally:
44
+
</details>
48
45
49
-
```sh
50
-
$ verb
51
-
```
46
+
<details>
47
+
<summary><strong>Building docs</strong></summary>
52
48
53
-
## Running tests
49
+
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
54
50
55
-
Install dev dependencies:
51
+
To generate the readme, run the following command:
*[assign-deep](https://www.npmjs.com/package/assign-deep): Deeply assign the enumerable properties and/or es6 Symbol properies of source objects to the target… [more](https://github.com/jonschlinkert/assign-deep) | [homepage](https://github.com/jonschlinkert/assign-deep)
64
+
*[defaults-deep](https://www.npmjs.com/package/defaults-deep): Like `extend` but recursively copies only the missing properties/values to the target object. | [homepage](https://github.com/jonschlinkert/defaults-deep)
65
+
*[extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow)
66
+
*[merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep)
67
+
*[mixin-deep](https://www.npmjs.com/package/mixin-deep): Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone. | [homepage](https://github.com/jonschlinkert/mixin-deep)
68
+
*[omit-deep](https://www.npmjs.com/package/omit-deep): Recursively omit the specified key or keys from an object. | [homepage](https://github.com/jonschlinkert/omit-deep)
0 commit comments