Like `extend` but recursively copies only the missing properties/values to the target object.
npm install defaults-deep> Like extend but recursively copies only the missing properties/values to the target object.
Install with npm
``sh`
$ npm i defaults-deep --save
Install with bower
`sh`
$ bower install defaults-deep --save
`js
var defaults = require('defaults-deep');
defaults({a: {one: 'one'}}, {a: {two: 'two'}})
//=> {a: {one: 'one', two: 'two'}};
`
* assign-deep: Deeply assign the enumerable properties of source objects to a destination object. If a callback… more
* extend-shallow: Extend an object with the properties of additional objects. node.js/javascript util.
* merge-deep: Recursively merge values in a javascript object.
* mixin-deep: Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.
* omit-deep: Recursively omit the given keys from an object.
Install dev dependencies:
`sh``
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
+ github/jonschlinkert
+ twitter/jonschlinkert
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
*
_This file was generated by verb-cli on May 28, 2015._