]> zoso.dev Git - buffer.git/commitdiff
don't assume Uint8Array exists in global namespace
authorFeross Aboukhadijeh <feross@feross.org>
Thu, 9 Jan 2014 05:00:55 +0000 (21:00 -0800)
committerFeross Aboukhadijeh <feross@feross.org>
Thu, 9 Jan 2014 05:00:55 +0000 (21:00 -0800)
index.js

index 5d1d4be94930bda51d20e543406c81eecd22093c..91cd518640a0df17f8fbb5aedcc502b607cb8b1b 100644 (file)
--- a/index.js
+++ b/index.js
@@ -81,7 +81,7 @@ function Buffer (subject, encoding, noZero) {
   }
 
   var i
-  if (subject instanceof Uint8Array) {
+  if (typeof Uint8Array === 'function' && subject instanceof Uint8Array) {
     // Speed optimization -- use set if we're copying from a Uint8Array
     buf.set(subject)
   } else if (isArrayish(subject)) {