From c42fea0d3de6130195603b31d4a5db7640b319cc Mon Sep 17 00:00:00 2001 From: jdalton Date: Sat, 16 May 2015 09:29:11 -0700 Subject: [PATCH] Remove `isStrictComparable` use from `_.isEqual`. --- lodash.src.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index c2fee8767..541a83104 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -8769,9 +8769,6 @@ */ function isEqual(value, other, customizer, thisArg) { customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined; - if (!customizer && isStrictComparable(value) && isStrictComparable(other)) { - return value === other; - } var result = customizer ? customizer(value, other) : undefined; return result === undefined ? baseIsEqual(value, other, customizer) : !!result; }