(text: string)
| 31 | } |
| 32 | |
| 33 | function bytes(text: string): Uint8Array { |
| 34 | return new TextEncoder().encode(text); |
| 35 | } |
| 36 | |
| 37 | function decode(data: Uint8Array): string { |
| 38 | return new TextDecoder().decode(data); |
no outgoing calls
no test coverage detected