From 7057f189128e788477163e8363cc245732d600c0 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 10 Dec 2013 18:39:20 -0800 Subject: [PATCH] fix isArray --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f8f2945..987a554 100644 --- a/index.js +++ b/index.js @@ -1038,7 +1038,7 @@ function coerce (length) { function isArray (subject) { return (Array.isArray || function (subject) { - Object.toString.apply(subject) === '[object Array]' + Object.prototype.toString.call(subject) === '[object Array]' })(subject) } -- 2.34.1