From: Feross Aboukhadijeh Date: Sat, 18 Jan 2014 20:45:45 +0000 (-0800) Subject: Fix #16. TypeError: buf.set is not a function (firefox) X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=6913a8d94608b0b700c16ea6c507cf617bbd2c8a;p=buffer.git Fix #16. TypeError: buf.set is not a function (firefox) --- 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)