Looking to combine multiple arraybuffers into a Blob, but facing limitations with TypedArrays that lack handy methods like "push".
For example:
var x = new Int8Array( [ 1, 2, 3 ] );
var y = new Int8Array( [ 4, 5, 6 ] );
The desired outcome is to have [ 1, 2, 3, 4, 5, 6 ]
.