lodash.clonedeep
Advanced tools
Comparing version 2.4.1 to 3.0.0
67
index.js
/** | ||
* Lo-Dash 2.4.1 (Custom Build) <http://lodash.com/> | ||
* Build: `lodash modularize modern exports="npm" -o ./npm/` | ||
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> | ||
* Based on Underscore.js 1.5.2 <http://underscorejs.org/LICENSE> | ||
* Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
* Available under MIT license <http://lodash.com/license> | ||
* lodash 3.0.0 (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> | ||
* Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
* Available under MIT license <https://lodash.com/license> | ||
*/ | ||
var baseClone = require('lodash._baseclone'), | ||
baseCreateCallback = require('lodash._basecreatecallback'); | ||
bindCallback = require('lodash._bindcallback'); | ||
/** | ||
* Creates a deep clone of `value`. If a callback is provided it will be | ||
* executed to produce the cloned values. If the callback returns `undefined` | ||
* cloning will be handled by the method instead. The callback is bound to | ||
* `thisArg` and invoked with one argument; (value). | ||
* Creates a deep clone of `value`. If `customizer` is provided it is invoked | ||
* to produce the cloned values. If `customizer` returns `undefined` cloning | ||
* is handled by the method instead. The `customizer` is bound to `thisArg` | ||
* and invoked with two argument; (value [, index|key, object]). | ||
* | ||
* Note: This method is loosely based on the structured clone algorithm. Functions | ||
* and DOM nodes are **not** cloned. The enumerable properties of `arguments` objects and | ||
* objects created by constructors other than `Object` are cloned to plain `Object` objects. | ||
* See http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm. | ||
* **Note:** This method is loosely based on the structured clone 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. | ||
* | ||
* @static | ||
* @memberOf _ | ||
* @category Objects | ||
* @category Lang | ||
* @param {*} value The value to deep clone. | ||
* @param {Function} [callback] The function to customize cloning values. | ||
* @param {*} [thisArg] The `this` binding of `callback`. | ||
* @param {Function} [customizer] The function to customize cloning values. | ||
* @param {*} [thisArg] The `this` binding of `customizer`. | ||
* @returns {*} Returns the deep cloned value. | ||
* @example | ||
* | ||
* var characters = [ | ||
* { 'name': 'barney', 'age': 36 }, | ||
* { 'name': 'fred', 'age': 40 } | ||
* var users = [ | ||
* { 'user': 'barney' }, | ||
* { 'user': 'fred' } | ||
* ]; | ||
* | ||
* var deep = _.cloneDeep(characters); | ||
* deep[0] === characters[0]; | ||
* var deep = _.cloneDeep(users); | ||
* deep[0] === users[0]; | ||
* // => false | ||
* | ||
* var view = { | ||
* 'label': 'docs', | ||
* 'node': element | ||
* }; | ||
* | ||
* var clone = _.cloneDeep(view, function(value) { | ||
* // using a customizer callback | ||
* var el = _.cloneDeep(document.body, function(value) { | ||
* return _.isElement(value) ? value.cloneNode(true) : undefined; | ||
* }); | ||
* | ||
* clone.node == view.node; | ||
* body === document.body | ||
* // => false | ||
* body.nodeName | ||
* // => BODY | ||
* body.childNodes.length; | ||
* // => 20 | ||
*/ | ||
function cloneDeep(value, callback, thisArg) { | ||
return baseClone(value, true, typeof callback == 'function' && baseCreateCallback(callback, thisArg, 1)); | ||
function cloneDeep(value, customizer, thisArg) { | ||
customizer = typeof customizer == 'function' && bindCallback(customizer, thisArg, 1); | ||
return baseClone(value, true, customizer); | ||
} | ||
module.exports = cloneDeep; |
@@ -1,3 +0,3 @@ | ||
Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/> | ||
Based on Underscore.js 1.5.2, copyright 2009-2013 Jeremy Ashkenas, | ||
Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/> | ||
Based on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas, | ||
DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/> | ||
@@ -22,2 +22,2 @@ | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
{ | ||
"name": "lodash.clonedeep", | ||
"version": "2.4.1", | ||
"description": "The Lo-Dash function `_.cloneDeep` as a Node.js module generated by lodash-cli.", | ||
"homepage": "http://lodash.com/custom-builds", | ||
"version": "3.0.0", | ||
"description": "The modern build of lodash’s `_.cloneDeep` as a module.", | ||
"homepage": "https://lodash.com/", | ||
"icon": "https://lodash.com/icon.svg", | ||
"license": "MIT", | ||
"keywords": ["functional", "lodash", "lodash-modularized", "server", "util"], | ||
"keywords": "lodash, lodash-modularized, stdlib, util", | ||
"author": "John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", | ||
"contributors": [ | ||
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)", | ||
"Benjamin Tan <demoneaux@gmail.com> (https://d10.github.io/)", | ||
"Blaine Bublitz <blaine@iceddev.com> (http://www.iceddev.com/)", | ||
"Kit Cambridge <github@kitcambridge.be> (http://kitcambridge.be/)", | ||
"Mathias Bynens <mathias@qiwi.be> (http://mathiasbynens.be/)" | ||
"Mathias Bynens <mathias@qiwi.be> (https://mathiasbynens.be/)" | ||
], | ||
"bugs": "https://github.com/lodash/lodash-cli/issues", | ||
"repository": { "type": "git", "url": "https://github.com/lodash/lodash-cli.git" }, | ||
"repository": "lodash/lodash", | ||
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" }, | ||
"dependencies": { | ||
"lodash._baseclone": "~2.4.1", | ||
"lodash._basecreatecallback": "~2.4.1" | ||
"lodash._baseclone": "^3.0.0", | ||
"lodash._bindcallback": "^3.0.0" | ||
} | ||
} |
@@ -1,15 +0,20 @@ | ||
# lodash.clonedeep v2.4.1 | ||
# lodash.clonedeep v3.0.0 | ||
The [Lo-Dash](http://lodash.com/) function [`_.cloneDeep`](http://lodash.com/docs#cloneDeep) as a [Node.js](http://nodejs.org/) module generated by [lodash-cli](https://npmjs.org/package/lodash-cli). | ||
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. | ||
## Author | ||
## Installation | ||
| [![twitter/jdalton](http://gravatar.com/avatar/299a3d891ff1920b69c364d061007043?s=70)](https://twitter.com/jdalton "Follow @jdalton on Twitter") | | ||
|---| | ||
| [John-David Dalton](http://allyoucanleet.com/) | | ||
Using npm: | ||
## Contributors | ||
```bash | ||
$ {sudo -H} npm i -g npm | ||
$ npm i --save lodash.clonedeep | ||
``` | ||
| [![twitter/blainebublitz](http://gravatar.com/avatar/ac1c67fd906c9fecd823ce302283b4c1?s=70)](https://twitter.com/blainebublitz "Follow @BlaineBublitz on Twitter") | [![twitter/kitcambridge](http://gravatar.com/avatar/6662a1d02f351b5ef2f8b4d815804661?s=70)](https://twitter.com/kitcambridge "Follow @kitcambridge on Twitter") | [![twitter/mathias](http://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") | | ||
|---|---|---| | ||
| [Blaine Bublitz](http://www.iceddev.com/) | [Kit Cambridge](http://kitcambridge.be/) | [Mathias Bynens](http://mathiasbynens.be/) | | ||
In Node.js/io.js: | ||
```js | ||
var cloneDeep = require('lodash.clonedeep'); | ||
``` | ||
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. |
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
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
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
58
21
5041
1
+ Addedlodash._bindcallback@^3.0.0
+ Addedlodash._arraycopy@3.0.0(transitive)
+ Addedlodash._arrayeach@3.0.0(transitive)
+ Addedlodash._baseassign@3.2.0(transitive)
+ Addedlodash._baseclone@3.3.0(transitive)
+ Addedlodash._basecopy@3.0.1(transitive)
+ Addedlodash._basefor@3.0.3(transitive)
+ Addedlodash._bindcallback@3.0.1(transitive)
+ Addedlodash._getnative@3.9.1(transitive)
+ Addedlodash.isarguments@3.1.0(transitive)
+ Addedlodash.isarray@3.0.4(transitive)
+ Addedlodash.keys@3.1.2(transitive)
- Removedlodash._basecreatecallback@~2.4.1
- Removedlodash._arraypool@2.4.1(transitive)
- Removedlodash._basebind@2.4.1(transitive)
- Removedlodash._baseclone@2.4.1(transitive)
- Removedlodash._basecreate@2.4.1(transitive)
- Removedlodash._basecreatecallback@2.4.1(transitive)
- Removedlodash._basecreatewrapper@2.4.1(transitive)
- Removedlodash._createwrapper@2.4.1(transitive)
- Removedlodash._getarray@2.4.1(transitive)
- Removedlodash._isnative@2.4.1(transitive)
- Removedlodash._maxpoolsize@2.4.1(transitive)
- Removedlodash._objecttypes@2.4.1(transitive)
- Removedlodash._releasearray@2.4.1(transitive)
- Removedlodash._setbinddata@2.4.1(transitive)
- Removedlodash._shimkeys@2.4.1(transitive)
- Removedlodash._slice@2.4.1(transitive)
- Removedlodash.assign@2.4.1(transitive)
- Removedlodash.bind@2.4.1(transitive)
- Removedlodash.foreach@2.4.1(transitive)
- Removedlodash.forown@2.4.1(transitive)
- Removedlodash.identity@2.4.1(transitive)
- Removedlodash.isarray@2.4.1(transitive)
- Removedlodash.isfunction@2.4.1(transitive)
- Removedlodash.isobject@2.4.1(transitive)
- Removedlodash.keys@2.4.1(transitive)
- Removedlodash.noop@2.4.1(transitive)
- Removedlodash.support@2.4.1(transitive)
Updatedlodash._baseclone@^3.0.0