From: Feross Aboukhadijeh Date: Thu, 9 Jan 2014 05:00:55 +0000 (-0800) Subject: don't assume Uint8Array exists in global namespace X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=8646c5ce94b32ec4870bd04423edef8f172f25de;p=buffer.git don't assume Uint8Array exists in global namespace --- 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)) {