blob: c4ab00790e9ad3deef70760dffa84e34e8847b92 [file] [log] [blame] [edit]
export function fromUTF8Array(data: BufferSource): string {
const decoder = new TextDecoder();
return decoder.decode(data);
}
export function toUTF8Array(str: string): Uint8Array {
const encoder = new TextEncoder();
return encoder.encode(str);
}