lodash.clonedeep
Advanced tools
Comparing version 3.0.0 to 3.0.1
25
index.js
/** | ||
* lodash 3.0.0 (Custom Build) <https://lodash.com/> | ||
* lodash 3.0.1 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modern modularize exports="npm" -o ./` | ||
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> | ||
* Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE> | ||
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> | ||
* Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
@@ -18,8 +18,8 @@ * Available under MIT license <https://lodash.com/license> | ||
* | ||
* **Note:** This method is loosely based on the structured clone algorithm. | ||
* **Note:** This method is loosely based on the | ||
* [structured clone algorithm](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm). | ||
* The enumerable properties of `arguments` objects and objects created by | ||
* constructors other than `Object` are cloned to plain `Object` objects. An | ||
* empty object is returned for uncloneable values such as functions, DOM nodes, | ||
* Maps, Sets, and WeakMaps. See the [HTML5 specification](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm) | ||
* for more details. | ||
* Maps, Sets, and WeakMaps. | ||
* | ||
@@ -46,17 +46,20 @@ * @static | ||
* var el = _.cloneDeep(document.body, function(value) { | ||
* return _.isElement(value) ? value.cloneNode(true) : undefined; | ||
* if (_.isElement(value)) { | ||
* return value.cloneNode(true); | ||
* } | ||
* }); | ||
* | ||
* body === document.body | ||
* el === document.body | ||
* // => false | ||
* body.nodeName | ||
* el.nodeName | ||
* // => BODY | ||
* body.childNodes.length; | ||
* el.childNodes.length; | ||
* // => 20 | ||
*/ | ||
function cloneDeep(value, customizer, thisArg) { | ||
customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 1); | ||
return baseClone(value, true, customizer); | ||
return typeof customizer == 'function' | ||
? baseClone(value, true, bindCallback(customizer, thisArg, 1)) | ||
: baseClone(value, true); | ||
} | ||
module.exports = cloneDeep; |
Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> | ||
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas, | ||
Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, | ||
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> | ||
@@ -4,0 +4,0 @@ |
{ | ||
"name": "lodash.clonedeep", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "The modern build of lodash’s `_.cloneDeep` as a module.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/", |
@@ -1,2 +0,2 @@ | ||
# lodash.clonedeep v3.0.0 | ||
# lodash.clonedeep v3.0.1 | ||
@@ -20,2 +20,2 @@ The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash’s](https://lodash.com/) `_.cloneDeep` exported as a [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) module. | ||
See the [documentation](https://lodash.com/docs#cloneDeep) or [package source](https://github.com/lodash/lodash/blob/3.0.0-npm-packages/lodash.clonedeep) for more details. | ||
See the [documentation](https://lodash.com/docs#cloneDeep) or [package source](https://github.com/lodash/lodash/blob/3.0.1-npm-packages/lodash.clonedeep) for more details. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
61
4995