diff --git a/lodash.js b/lodash.js index 2ca2ba1e3..ddadd181d 100644 --- a/lodash.js +++ b/lodash.js @@ -9695,8 +9695,7 @@ * // => false */ function isArrayLike(value) { - return value != null && - !(typeof value == 'function' && isFunction(value)) && isLength(getLength(value)); + return value != null && isLength(getLength(value)) && !isFunction(value); } /**