Upsilon-VsCode/Client/node_modules/deep-assign
Deukhoofd 95cff6f702
Initial
2019-02-17 18:07:28 +01:00
..
index.js Initial 2019-02-17 18:07:28 +01:00
license Initial 2019-02-17 18:07:28 +01:00
package.json Initial 2019-02-17 18:07:28 +01:00
readme.md Initial 2019-02-17 18:07:28 +01:00

readme.md

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.

License

MIT © Sindre Sorhus