(s: string)
| 143 | * Encode a string to its Uint8Array representation. |
| 144 | */ |
| 145 | export function encodeText(s: string): Uint8Array { |
| 146 | return Deno.core.encode(s); |
| 147 | } |
| 148 | |
| 149 | /** |
| 150 | * Decode a string from its Uint8Array representation. |
no outgoing calls
no test coverage detected