(src: string)
| 87 | * ``` |
| 88 | */ |
| 89 | export function decodeHex(src: string): Uint8Array_ { |
| 90 | const output = new TextEncoder().encode(src) as Uint8Array_; |
| 91 | // deno-lint-ignore no-explicit-any |
| 92 | return new Uint8Array((output.buffer as any) |
| 93 | .transfer(decode(output, 0, 0, rAlphabet))); |
| 94 | } |
no test coverage detected