From 6913a8d94608b0b700c16ea6c507cf617bbd2c8a Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 18 Jan 2014 12:45:45 -0800 Subject: [PATCH] Fix #16. TypeError: buf.set is not a function (firefox) --- index.js | 3 ++- test/buffer.js | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 91cd518..6c30b31 100644 --- a/index.js +++ b/index.js @@ -81,7 +81,8 @@ function Buffer (subject, encoding, noZero) { } var i - if (typeof Uint8Array === 'function' && subject instanceof Uint8Array) { + if (Buffer._useTypedArrays && typeof Uint8Array === 'function' && + subject instanceof Uint8Array) { // Speed optimization -- use set if we're copying from a Uint8Array buf.set(subject) } else if (isArrayish(subject)) { diff --git a/test/buffer.js b/test/buffer.js index a449879..7e700e4 100644 --- a/test/buffer.js +++ b/test/buffer.js @@ -205,6 +205,19 @@ test("new buffer from buffer", function (t) { t.end() }) +test("new buffer from uint8array", function (t) { + if (typeof Uint8Array === 'function') { + var b1 = new Uint8Array([0, 1, 2, 3]) + var b2 = new B(b1) + t.equal(b1[0], 0) + t.equal(b1[1], 1) + t.equal(b1[2], 2) + t.equal(b1[3], 3) + t.equal(b1[4], undefined) + } + t.end() +}) + test("fill", function(t) { t.plan(1) var b = new B(10) -- 2.34.1