lodash._baseisequal
Advanced tools
Comparing version 4.0.2 to 4.0.3
59
index.js
/** | ||
* lodash 4.0.2 (Custom Build) <https://lodash.com/> | ||
* lodash 4.0.3 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="npm" -o ./` | ||
@@ -68,3 +68,35 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
/** 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')(); | ||
/** | ||
* A specialized version of `_.some` for arrays without support for iteratee | ||
@@ -91,2 +123,13 @@ * shorthands. | ||
/** | ||
* 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. | ||
@@ -145,6 +188,6 @@ * | ||
/** Used for built-in method references. */ | ||
var objectProto = global.Object.prototype; | ||
var objectProto = Object.prototype; | ||
/** Used to resolve the decompiled source of functions. */ | ||
var funcToString = global.Function.prototype.toString; | ||
var funcToString = Function.prototype.toString; | ||
@@ -167,9 +210,9 @@ /** Used to check objects for own properties. */ | ||
/** Built-in value references. */ | ||
var Symbol = global.Symbol, | ||
Uint8Array = global.Uint8Array, | ||
var Symbol = root.Symbol, | ||
Uint8Array = root.Uint8Array, | ||
getPrototypeOf = Object.getPrototypeOf; | ||
/* Built-in method references that are verified to be native. */ | ||
var Map = getNative(global, 'Map'), | ||
Set = getNative(global, 'Set'); | ||
var Map = getNative(root, 'Map'), | ||
Set = getNative(root, 'Set'); | ||
@@ -629,4 +672,2 @@ /** Used to detect maps and sets. */ | ||
function isObject(value) { | ||
// Avoid a V8 JIT bug in Chrome 19-20. | ||
// See https://code.google.com/p/v8/issues/detail?id=2291 for more details. | ||
var type = typeof value; | ||
@@ -633,0 +674,0 @@ return !!value && (type == 'object' || type == 'function'); |
{ | ||
"name": "lodash._baseisequal", | ||
"version": "4.0.2", | ||
"version": "4.0.3", | ||
"description": "The internal lodash function `baseIsEqual` exported as a module.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/", |
@@ -1,2 +0,2 @@ | ||
# lodash._baseisequal v4.0.2 | ||
# lodash._baseisequal v4.0.3 | ||
@@ -18,2 +18,2 @@ The internal [lodash](https://lodash.com/) function `baseIsEqual` exported as a [Node.js](https://nodejs.org/) module. | ||
See the [package source](https://github.com/lodash/lodash/blob/4.0.2-npm-packages/lodash._baseisequal) for more details. | ||
See the [package source](https://github.com/lodash/lodash/blob/4.0.3-npm-packages/lodash._baseisequal) 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
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
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
25492
678
1