3.0.0 • Published 7 years ago

deep-assign v3.0.0

Weekly downloads
488,289
License
MIT
Repository
github
Last release
7 years ago

deep-assign Build Status

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

3.0.0

7 years ago

2.0.0

10 years ago

1.0.0

10 years ago