Skip to main content
Module

std/encoding/base64url.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.167.0/encoding/base64url.ts";

encode and decode for base64 URL safe encoding.

This module is browser compatible.

Examples

Example 1

import {
  decode,
  encode,
} from "https://deno.land/std@0.167.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 ]

Functions

Converts given base64url encoded data back to original

Encodes a given ArrayBuffer or string into a base64url representation