}
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)) {
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)