mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 18:37:50 +00:00
Minor newline nits.
This commit is contained in:
@@ -2982,8 +2982,7 @@
|
|||||||
if (value === other) {
|
if (value === other) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (value == null || other == null ||
|
if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) {
|
||||||
(!isObject(value) && !isObjectLike(other))) {
|
|
||||||
return value !== value && other !== other;
|
return value !== value && other !== other;
|
||||||
}
|
}
|
||||||
return baseIsEqualDeep(value, other, baseIsEqual, customizer, bitmask, stack);
|
return baseIsEqualDeep(value, other, baseIsEqual, customizer, bitmask, stack);
|
||||||
@@ -4923,7 +4922,7 @@
|
|||||||
}
|
}
|
||||||
} else if (!(
|
} else if (!(
|
||||||
arrValue === othValue ||
|
arrValue === othValue ||
|
||||||
equalFunc(arrValue, othValue, customizer, bitmask, stack)
|
equalFunc(arrValue, othValue, customizer, bitmask, stack)
|
||||||
)) {
|
)) {
|
||||||
result = false;
|
result = false;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user