mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
wip: code formatting nits
This commit is contained in:
@@ -24,13 +24,13 @@ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {
|
||||
const arrLength = array.length
|
||||
const othLength = other.length
|
||||
|
||||
if (arrLength != othLength && !(isPartial && othLength > arrLength)) {
|
||||
if (arrLength !== othLength && !(isPartial && othLength > arrLength)) {
|
||||
return false
|
||||
}
|
||||
// Assume cyclic values are equal.
|
||||
const stacked = stack.get(array)
|
||||
if (stacked && stack.get(other)) {
|
||||
return stacked == other
|
||||
return stacked === other
|
||||
}
|
||||
let index = -1
|
||||
let result = true
|
||||
|
||||
Reference in New Issue
Block a user