1.0.0 • Published 9 years ago

concat-buffers v1.0.0

Weekly downloads
13
License
MIT
Repository
github
Last release
9 years ago

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