diff --git a/lodash.js b/lodash.js index 0a560b5d2..e5239d497 100644 --- a/lodash.js +++ b/lodash.js @@ -1082,7 +1082,7 @@ while (length--) { if (array[length] === placeholder) { - result++; + ++result; } } return result; @@ -1346,7 +1346,7 @@ function unicodeSize(string) { var result = reUnicode.lastIndex = 0; while (reUnicode.test(string)) { - result++; + ++result; } return result; }