Skip to main content
Go to Latest
function decodeBase64Url
import { decodeBase64Url } from "https://deno.land/std@0.223.0/encoding/base64url.ts";

Decodes a given base64url-encoded string.

Examples

Example 1

import { decodeBase64Url } from "https://deno.land/std@0.223.0/encoding/base64url.ts";

decodeBase64Url("Zm9vYmFy"); // Uint8Array(6) [ 102, 111, 111, 98, 97, 114 ]

Parameters

b64url: string

The base64url-encoded string to decode.

Returns

Uint8Array

The decoded data.