_.isEqual: Issue #355.

This commit is contained in:
Kit Cambridge
2011-10-30 20:45:56 -06:00
parent 3d1605f241
commit efd29e12cd

View File

@@ -741,7 +741,7 @@
// Ensure that both objects contain the same number of properties.
if (result) {
for (key in b) {
if (hasOwnProperty.call(b, key) && !size--) break;
if (hasOwnProperty.call(b, key) && !(size--)) break;
}
result = !size;
}