lodash._baseisequal
Advanced tools
Comparing version 4.0.1 to 4.0.2
14
index.js
/** | ||
* lodash 4.0.0 (Custom Build) <https://lodash.com/> | ||
* lodash 4.0.2 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="npm" -o ./` | ||
@@ -164,3 +164,3 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
/** Built-in value references. */ | ||
var _Symbol = global.Symbol, | ||
var Symbol = global.Symbol, | ||
Uint8Array = global.Uint8Array, | ||
@@ -178,4 +178,4 @@ getPrototypeOf = Object.getPrototypeOf; | ||
/** Used to convert symbols to primitives and strings. */ | ||
var symbolProto = _Symbol ? _Symbol.prototype : undefined, | ||
symbolValueOf = _Symbol ? symbolProto.valueOf : undefined; | ||
var symbolProto = Symbol ? Symbol.prototype : undefined, | ||
symbolValueOf = Symbol ? symbolProto.valueOf : undefined; | ||
@@ -403,3 +403,3 @@ /** | ||
case symbolTag: | ||
return !!_Symbol && (symbolValueOf.call(object) == symbolValueOf.call(other)); | ||
return !!Symbol && (symbolValueOf.call(object) == symbolValueOf.call(other)); | ||
} | ||
@@ -424,3 +424,2 @@ return false; | ||
var isPartial = bitmask & PARTIAL_COMPARE_FLAG, | ||
isUnordered = bitmask & UNORDERED_COMPARE_FLAG, | ||
objProps = keys(object), | ||
@@ -437,4 +436,3 @@ objLength = objProps.length, | ||
var key = objProps[index]; | ||
if (!(isPartial ? key in other : baseHas(other, key)) || | ||
!(isUnordered || key == othProps[index])) { | ||
if (!(isPartial ? key in other : baseHas(other, key))) { | ||
return false; | ||
@@ -441,0 +439,0 @@ } |
{ | ||
"name": "lodash._baseisequal", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"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.1 | ||
# lodash._baseisequal v4.0.2 | ||
@@ -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.1-npm-packages/lodash._baseisequal) for more details. | ||
See the [package source](https://github.com/lodash/lodash/blob/4.0.2-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
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
24140
646