Version 1
[yaffs-website] / node_modules / concat-stream / node_modules / isarray / index.js
diff --git a/node_modules/concat-stream/node_modules/isarray/index.js b/node_modules/concat-stream/node_modules/isarray/index.js
new file mode 100644 (file)
index 0000000..a57f634
--- /dev/null
@@ -0,0 +1,5 @@
+var toString = {}.toString;
+
+module.exports = Array.isArray || function (arr) {
+  return toString.call(arr) == '[object Array]';
+};