Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 1 | export function fromUTF8Array(data: BufferSource): string { |
2 | const decoder = new TextDecoder(); | ||||
3 | return decoder.decode(data); | ||||
4 | } | ||||
5 | |||||
6 | export function toUTF8Array(str: string) : Uint8Array { | ||||
7 | const encoder = new TextEncoder(); | ||||
8 | return encoder.encode(str); | ||||
9 | } |