export function toLocalUint8Array(value: Uint8Array): Uint8Array { if (value.buffer instanceof ArrayBuffer) { return value as Uint8Array; } const copy = new Uint8Array(value.length); copy.set(value); return copy; }