Package detail

concat-buffers

iefserge169.7kMIT1.0.0

Concatenate Uint8Arrays

buffer, concat, uint8array, concatenate

readme

concat-buffers

Concatenate Uint8Arrays

Build Status

USAGE

var concatBuffers = require('concat-buffers');

concatBuffers(new Uint8Array([1, 2]), new Uint8Array([3, 4, 5]));
// Uint8Array [1, 2, 3, 4, 5]

concatBuffers([new Uint8Array([1]), new Uint8Array([2])]);
// Uint8Array [1, 2]

LICENSE

MIT