From: Feross Aboukhadijeh Date: Wed, 11 Dec 2013 05:53:17 +0000 (-0800) Subject: fix isArray function (tests pass in Firefox 3 now) X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=4217987849ec9154ffbaf3e3f1a08553ea8dc355;p=buffer.git fix isArray function (tests pass in Firefox 3 now) --- 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) }