|
|
|
/**
|
|
|
|
* lodash 4.3.2 (Custom Build) <https://lodash.com/>
|
|
|
|
* Build: `lodash modularize exports="npm" -o ./`
|
|
|
|
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
|
|
|
|
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
|
|
* Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
|
|
* Available under MIT license <https://lodash.com/license>
|
|
|
|
*/
|
|
|
|
var baseClone = require('lodash._baseclone');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is like `_.clone` except that it recursively clones `value`.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @memberOf _
|
|
|
|
* @category Lang
|
|
|
|
* @param {*} value The value to recursively clone.
|
|
|
|
* @returns {*} Returns the deep cloned value.
|
|
|
|
* @example
|
|
|
|
*
|
|
|
|
* var objects = [{ 'a': 1 }, { 'b': 2 }];
|
|
|
|
*
|
|
|
|
* var deep = _.cloneDeep(objects);
|
|
|
|
* console.log(deep[0] === objects[0]);
|
|
|
|
* // => false
|
|
|
|
*/
|
|
|
|
function cloneDeep(value) {
|
|
|
|
return baseClone(value, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = cloneDeep;
|