From 4217987849ec9154ffbaf3e3f1a08553ea8dc355 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Tue, 10 Dec 2013 21:53:17 -0800 Subject: [PATCH] fix isArray function (tests pass in Firefox 3 now) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7edee49..9bb3b8c 100644 --- a/index.js +++ b/index.js @@ -1052,7 +1052,7 @@ function coerce (length) { function isArray (subject) { return (Array.isArray || function (subject) { - Object.prototype.toString.call(subject) === '[object Array]' + return Object.prototype.toString.call(subject) === '[object Array]' })(subject) } -- 2.34.1