Skip to content

Instantly share code, notes, and snippets.

@neyasbltb88
Forked from 72lions/concat.array.buffers.js
Created March 24, 2019 01:37
Show Gist options
  • Save neyasbltb88/82b9c7fa7f60f6e1279e910f5f28b062 to your computer and use it in GitHub Desktop.
Save neyasbltb88/82b9c7fa7f60f6e1279e910f5f28b062 to your computer and use it in GitHub Desktop.
Concatenates two ArrayBuffers
/**
* Creates a new Uint8Array based on two different ArrayBuffers
*
* @private
* @param {ArrayBuffers} buffer1 The first buffer.
* @param {ArrayBuffers} buffer2 The second buffer.
* @return {ArrayBuffers} The new ArrayBuffer created out of the two.
*/
var _appendBuffer = function(buffer1, buffer2) {
var tmp = new Uint8Array(buffer1.byteLength + buffer2.byteLength);
tmp.set(new Uint8Array(buffer1), 0);
tmp.set(new Uint8Array(buffer2), buffer1.byteLength);
return tmp.buffer;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment