(str: string)
| 45 | } |
| 46 | |
| 47 | export function encodeString(str: string): Uint8Array { |
| 48 | return utf8ToBin(str); |
| 49 | } |
| 50 | |
| 51 | export function decodeString(encodedString: Uint8Array): string { |
| 52 | return binToUtf8(encodedString); |
no outgoing calls
no test coverage detected