(b64url: string)
| 75 | * ``` |
| 76 | */ |
| 77 | export function decodeBase64Url(b64url: string): Uint8Array_ { |
| 78 | const output = new TextEncoder().encode(b64url) as Uint8Array_; |
| 79 | // deno-lint-ignore no-explicit-any |
| 80 | return new Uint8Array((output.buffer as any) |
| 81 | .transfer(decode(output, 0, 0, rAlphabet, padding))); |
| 82 | } |
no test coverage detected