Projekt

Obecné

Profil

Stáhnout (3.67 KB) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
# mixin-deep [![NPM version](https://img.shields.io/npm/v/mixin-deep.svg?style=flat)](https://www.npmjs.com/package/mixin-deep) [![NPM monthly downloads](https://img.shields.io/npm/dm/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![NPM total downloads](https://img.shields.io/npm/dt/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/mixin-deep.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/mixin-deep)
2
3
> Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.
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
7
## Install
8
9
Install with [npm](https://www.npmjs.com/):
10
11
```sh
12
$ npm install --save mixin-deep
13
```
14
15
## Usage
16
17
```js
18
var mixinDeep = require('mixin-deep');
19
20
mixinDeep({a: {aa: 'aa'}}, {a: {bb: 'bb'}}, {a: {cc: 'cc'}});
21
//=> { a: { aa: 'aa', bb: 'bb', cc: 'cc' } }
22
```
23
24
## About
25
26
<details>
27
<summary><strong>Contributing</strong></summary>
28
29
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
30
31
</details>
32
33
<details>
34
<summary><strong>Running Tests</strong></summary>
35
36
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:
37
38
```sh
39
$ npm install && npm test
40
```
41
42
</details>
43
<details>
44
<summary><strong>Building docs</strong></summary>
45
46
_(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.)_
47
48
To generate the readme, run the following command:
49
50
```sh
51
$ npm install -g verbose/verb#dev verb-generate-readme && verb
52
```
53
54
</details>
55
56
### Related projects
57
58
You might also be interested in these projects:
59
60
* [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 "Like `extend` but recursively copies only the missing properties/values to the target object.")
61
* [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 "Extend an object with the properties of additional objects. node.js/javascript util.")
62
* [merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep "Recursively merge values in a javascript object.")
63
* [mixin-object](https://www.npmjs.com/package/mixin-object): Mixin the own and inherited properties of other objects onto the first object. Pass an… [more](https://github.com/jonschlinkert/mixin-object) | [homepage](https://github.com/jonschlinkert/mixin-object "Mixin the own and inherited properties of other objects onto the first object. Pass an empty object as the first arg to shallow clone.")
64
65
### Author
66
67
**Jon Schlinkert**
68
69
* [linkedin/in/jonschlinkert](https://linkedin.com/in/jonschlinkert)
70
* [github/jonschlinkert](https://github.com/jonschlinkert)
71
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
72
73
### License
74
75
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
76
Released under the [MIT License](LICENSE).
77
78
***
79
80
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on December 09, 2017._