Spaces:
Sleeping
Sleeping
File size: 297 Bytes
19e88d2 | 1 2 3 4 5 6 7 8 9 10 11 | export function combineUint8Arrays(
a: Uint8Array<ArrayBufferLike>,
b: Uint8Array<ArrayBufferLike>,
): Uint8Array<ArrayBuffer> {
const aLength = a.length;
const combinedBytes = new Uint8Array(aLength + b.length);
combinedBytes.set(a);
combinedBytes.set(b, aLength);
return combinedBytes;
}
|