export function toLocalUint8Array(value: Uint8Array): Uint8Array { if (value.buffer instanceof ArrayBuffer) { return value as Uint8Array; } return new Uint8Array(value); }