diff --git a/lodash.js b/lodash.js index ee9d0cdcd..ff32658d0 100644 --- a/lodash.js +++ b/lodash.js @@ -4712,6 +4712,9 @@ collection = values(collection); length = collection.length; } + if (!length) { + return false; + } if (typeof fromIndex == 'number') { fromIndex = fromIndex < 0 ? nativeMax(length + fromIndex, 0) : (fromIndex || 0); } else {