1export function fromUTF8Array(data: BufferSource): string { 2 const decoder = new TextDecoder(); 3 return decoder.decode(data); 4} 5 6export function toUTF8Array(str: string) : Uint8Array { 7 const encoder = new TextEncoder(); 8 return encoder.encode(str); 9}