]> zoso.dev Git - buffer.git/commitdiff
work in browsers without Array.isArray
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Dec 2013 02:16:41 +0000 (18:16 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 11 Dec 2013 02:16:41 +0000 (18:16 -0800)
index.js

index 97c7de60d5b4180d29864f4815eb49aca965bc37..f8f2945903bf9a8a2a947050997b2f3f2da08cb2 100644 (file)
--- 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'
 }