Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 | 68x 1032x 68x 87x | export function utf8ToBytes(content: string) {
return new TextEncoder().encode(content);
}
export function bytesToUtf8(buffer: Uint8Array) {
return new TextDecoder().decode(buffer);
}
|