import * as mod from "https://deno.land/std@0.188.0/encoding/base64url.ts";
encode
and decode
for
base64 URL safe encoding.
This module is browser compatible.
Examples
Example 1
Example 1
import {
decode,
encode,
} from "https://deno.land/std@0.188.0/encoding/base64url.ts";
const binary = new TextEncoder().encode("foobar");
const encoded = encode(binary);
console.log(encoded);
// => "Zm9vYmFy"
console.log(decode(encoded));
// => Uint8Array(6) [ 102, 111, 111, 98, 97, 114 ]