diff --git a/underscore.js b/underscore.js index 1f7df5ad5..80a1867f3 100644 --- a/underscore.js +++ b/underscore.js @@ -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; }