(text: string)
| 12 | |
| 13 | const textEncoder = new TextEncoder(); |
| 14 | export function textToBytes(text: string): Uint8Array { |
| 15 | return textEncoder.encode(text); |
| 16 | } |
| 17 | |
| 18 | const textDecoder = new TextDecoder(); |
| 19 | export function bytesToText(bytes: Uint8Array): string { |
no outgoing calls
no test coverage detected