iefserge / concat-buffers

Concatenate Uint8Arrays

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Concatenate Uint8Arrays

License:Other


Languages

Language:JavaScript 100.0%