Reducant check spotted by kitcambridge.

This commit is contained in:
Kevin Malakoff
2011-10-06 18:51:24 +02:00
parent 81c9dc2f1f
commit 69bb2e03fa

View File

@@ -636,8 +636,6 @@
if (a === b) return a !== 0 || 1 / a == 1 / b;
// A strict comparison is necessary because `null == undefined`.
if ((a == null) || (b == null)) return a === b;
// Either one is undefined
if ((a === void 0) || (b === void 0)) return false;
// Unwrap any wrapped objects.
if (a._chain) a = a._wrapped;
if (b._chain) b = b._wrapped;