]> zoso.dev Git - buffer.git/commitdiff
No longer using ES5 Array.isArray(), to support IE6
authorelliottcable <github@elliottcable.name>
Wed, 22 May 2013 18:02:08 +0000 (15:02 -0300)
committerelliottcable <github@elliottcable.name>
Wed, 22 May 2013 18:02:08 +0000 (15:02 -0300)
index.js

index a4bf90c63dd315454078e3fd55892a5d0b3e26c2..c1f9c6be3d1d727ca8f8e4a80b144190c216b309 100644 (file)
--- a/index.js
+++ b/index.js
@@ -385,7 +385,7 @@ Buffer.isBuffer = function isBuffer(b) {
 };
 
 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.");
   }
@@ -424,8 +424,16 @@ function coerce(length) {
   return length < 0 ? 0 : length;
 }
 
+function isArray(subject) {
+  return (Array.isArray ||
+    function(subject){
+      return {}.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';
 }