From: Feross Aboukhadijeh Date: Wed, 11 Dec 2013 02:16:41 +0000 (-0800) Subject: work in browsers without Array.isArray X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=9269be8a6f7631f7b7744817a444e6d3f7bb498f;p=buffer.git work in browsers without Array.isArray --- diff --git a/index.js b/index.js index 97c7de6..f8f2945 100644 --- a/index.js +++ b/index.js @@ -120,7 +120,7 @@ Buffer.byteLength = function (str, encoding) { } Buffer.concat = function (list, totalLength) { - if (!Array.isArray(list)) { + if (!isArray(list)) { throw new Error('Usage: Buffer.concat(list, [totalLength])\n' + 'list should be an Array.') } @@ -1036,8 +1036,14 @@ function coerce (length) { return length < 0 ? 0 : length } +function isArray (subject) { + return (Array.isArray || function (subject) { + Object.toString.apply(subject) === '[object Array]' + })(subject) +} + function isArrayIsh (subject) { - return Array.isArray(subject) || Buffer.isBuffer(subject) || + return isArray(subject) || Buffer.isBuffer(subject) || subject && typeof subject === 'object' && typeof subject.length === 'number' }