Files
lodash/defaultsDeep.js
2017-01-09 17:38:33 -08:00

29 lines
763 B
JavaScript

import apply from './_apply.js';
import customDefaultsMerge from './_customDefaultsMerge.js';
import mergeWith from './mergeWith.js';
/**
* This method is like `defaults` except that it recursively assigns
* default properties.
*
* **Note:** This method mutates `object`.
*
* @static
* @since 3.10.0
* @category Object
* @param {Object} object The destination object.
* @param {...Object} [sources] The source objects.
* @returns {Object} Returns `object`.
* @see defaults
* @example
*
* defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });
* // => { 'a': { 'b': 2, 'c': 3 } }
*/
function defaultsDeep(...args) {
args.push(undefined, customDefaultsMerge);
return apply(mergeWith, undefined, args);
}
export default defaultsDeep;