deep-assign
Recursive Object.assign()
🌟 Show real-time usage chart on deep-assign's README.md, just copy the code below. ## Usage Trend
[](https://npm-compare.com/deep-assign#timeRange=THREE_YEARS)
Copy Usage Chart to README 🌟 Show GitHub stars trend chart on deep-assign's README.md, just copy the code below. ## GitHub Stars Trend
[](https://npm-compare.com/deep-assign)
Copy GitHub Stars Chart to README deep-assign
Recursive Object.assign()
Install
$ npm install --save deep-assign
Usage
var deepAssign = require('deep-assign');
deepAssign({a: {b: 0}}, {a: {b: 1, c: 2}}, {a: {c: 3}});
//=> {a: {b: 1, c: 3}}
deepAssign(target, source, [source, ...])
Recursively assigns own enumerable properties of source objects to the target object and returns the target object. Additional source objects will overwrite previous ones.
Related
License
MIT © Sindre Sorhus
Read More