lodash.clone
Advanced tools
Comparing version 4.0.4 to 4.1.0
48
index.js
/** | ||
* lodash 4.0.4 (Custom Build) <https://lodash.com/> | ||
* lodash 4.1.0 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="npm" -o ./` | ||
@@ -12,3 +12,4 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
baseFor = require('lodash._basefor'), | ||
keys = require('lodash.keys'); | ||
keys = require('lodash.keys'), | ||
root = require('lodash._root'); | ||
@@ -68,35 +69,3 @@ /** `Object#toString` result references. */ | ||
/** Used to determine if values are of the language type `Object`. */ | ||
var objectTypes = { | ||
'function': true, | ||
'object': true | ||
}; | ||
/** Detect free variable `exports`. */ | ||
var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null; | ||
/** Detect free variable `module`. */ | ||
var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null; | ||
/** Detect free variable `global` from Node.js. */ | ||
var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global); | ||
/** Detect free variable `self`. */ | ||
var freeSelf = checkGlobal(objectTypes[typeof self] && self); | ||
/** Detect free variable `window`. */ | ||
var freeWindow = checkGlobal(objectTypes[typeof window] && window); | ||
/** Detect `this` as the global object. */ | ||
var thisGlobal = checkGlobal(objectTypes[typeof this] && this); | ||
/** | ||
* Used as a reference to the global object. | ||
* | ||
* The `this` value is used if it's the global object to avoid Greasemonkey's | ||
* restricted `window` object, otherwise the `window` object is used. | ||
*/ | ||
var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')(); | ||
/** | ||
* Adds the key-value `pair` to `map`. | ||
@@ -152,13 +121,2 @@ * | ||
/** | ||
* Checks if `value` is a global object. | ||
* | ||
* @private | ||
* @param {*} value The value to check. | ||
* @returns {null|Object} Returns `value` if it's a global object, else `null`. | ||
*/ | ||
function checkGlobal(value) { | ||
return (value && value.Object === Object) ? value : null; | ||
} | ||
/** | ||
* Checks if `value` is a host object in IE < 9. | ||
@@ -165,0 +123,0 @@ * |
{ | ||
"name": "lodash.clone", | ||
"version": "4.0.4", | ||
"version": "4.1.0", | ||
"description": "The lodash method `_.clone` exported as a module.", | ||
@@ -20,2 +20,3 @@ "homepage": "https://lodash.com/", | ||
"lodash._basefor": "^3.0.0", | ||
"lodash._root": "^3.0.0", | ||
"lodash._stack": "^4.0.0", | ||
@@ -22,0 +23,0 @@ "lodash.keys": "^4.0.0" |
@@ -1,2 +0,2 @@ | ||
# lodash.clone v4.0.4 | ||
# lodash.clone v4.1.0 | ||
@@ -18,2 +18,2 @@ The [lodash](https://lodash.com/) method `_.clone` exported as a [Node.js](https://nodejs.org/) module. | ||
See the [documentation](https://lodash.com/docs#clone) or [package source](https://github.com/lodash/lodash/blob/4.0.4-npm-packages/lodash.clone) for more details. | ||
See the [documentation](https://lodash.com/docs#clone) or [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash.clone) 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
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
0
24996
5
753
+ Addedlodash._root@^3.0.0
+ Addedlodash._root@3.0.1(transitive)