diff --git a/lodash.js b/lodash.js index baafa2154..5a750c2d5 100644 --- a/lodash.js +++ b/lodash.js @@ -3281,7 +3281,7 @@ if (value === other) { return true; } - if (value == null || other == null || (!isObject(value) && !isObjectLike(other))) { + if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) { return value !== value && other !== other; } return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);