blob: 83186e9dcfac0f636de65e0921cd97a97a25da95 [file] [log] [blame]
Austin Schuh272c6132020-11-14 16:37:52 -08001export 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}