diff --git a/lodash.js b/lodash.js index f63c12d0c..11d42c722 100644 --- a/lodash.js +++ b/lodash.js @@ -1599,7 +1599,7 @@ */ function baseFlatten(array, isDeep, isStrict, fromIndex) { var index = (fromIndex || 0) - 1, - length = array ? array.length : 0, + length = array.length, resIndex = 0, result = [];