From c1202fd1275e5ea8a63ea3351f895c41510123dd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 23 Oct 2014 08:51:05 -0700 Subject: [PATCH] Fix `isArrayLike` in older IE. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 820fd0340..0df0cd832 100644 --- a/lodash.js +++ b/lodash.js @@ -3056,7 +3056,7 @@ */ function isArrayLike(value) { return (value && typeof value == 'object' && isLength(value.length) && - arrayLikeClasses[toString.call(value)]) || false; + (arrayLikeClasses[toString.call(value)] || (!lodash.support.argsClass && isArguments(value)))) || false; } /**