(input: string)
| 8 | }; |
| 9 | const encoder = new TextEncoder(); |
| 10 | const utf8Encode = (input: string) => encoder.encode(input); |
| 11 | const decoder = new TextDecoder(); |
| 12 | const utf8Decode = (input: Uint8Array) => decoder.decode(input); |
| 13 |
no outgoing calls
no test coverage detected