(b64: string)
| 82 | * ``` |
| 83 | */ |
| 84 | export function decodeBase64(b64: string): Uint8Array_ { |
| 85 | const output = new TextEncoder().encode(b64) as Uint8Array_; |
| 86 | // deno-lint-ignore no-explicit-any |
| 87 | return new Uint8Array((output.buffer as any) |
| 88 | .transfer(decode(output, 0, 0, rAlphabet, padding))); |
| 89 | } |
no test coverage detected