diff --git a/lodash.js b/lodash.js index 5983b7b83..5289ad8ef 100644 --- a/lodash.js +++ b/lodash.js @@ -765,7 +765,7 @@ */ function baseTimes(n, iteratee) { var index = -1, - result = Array(n); + result = Array(n); while (++index < n) { result[index] = iteratee(index);