This commit is contained in:
Jeremy Ashkenas
2011-10-31 10:40:45 -04:00
parent b5a058ba39
commit 7f23d279a8

View File

@@ -732,7 +732,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;
}