From 8646c5ce94b32ec4870bd04423edef8f172f25de Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 8 Jan 2014 21:00:55 -0800 Subject: [PATCH] don't assume Uint8Array exists in global namespace --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 5d1d4be..91cd518 100644 --- 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)) { -- 2.34.1