@teamix/pro 1.5.11-beta.2 → 1.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,28 +0,0 @@
1
- /**
2
- * lodash (Custom Build) <https://lodash.com/>
3
- * Build: `lodash modularize exports="npm" -o ./`
4
- * Copyright jQuery Foundation and other contributors <https://jquery.org/>
5
- * Released under MIT license <https://lodash.com/license>
6
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
7
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
8
- */
9
- /**
10
- * This method is like `_.clone` except that it recursively clones `value`.
11
- *
12
- * @static
13
- * @memberOf _
14
- * @since 1.0.0
15
- * @category Lang
16
- * @param {*} value The value to recursively clone.
17
- * @returns {*} Returns the deep cloned value.
18
- * @see _.clone
19
- * @example
20
- *
21
- * var objects = [{ 'a': 1 }, { 'b': 2 }];
22
- *
23
- * var deep = _.cloneDeep(objects);
24
- * console.log(deep[0] === objects[0]);
25
- * // => false
26
- */
27
- declare function cloneDeep(value: any): any;
28
- export default cloneDeep;