std/encoding/mod.ts
Asher Gomez 9ff5dafa7d
BREAKING(encoding/unstable): move base64url-stream module to unstable-base64url-stream (#5959)
* BREAKING(encoding/unstable): move `base64url-stream` module to `unstable-base64url-stream`

* fix
2024-09-12 15:46:23 +09:00

25 lines
675 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
/**
* Utilities for encoding and decoding common formats like hex, base64, and varint.
*
* ```ts
* import { encodeBase64, decodeBase64 } from "@std/encoding";
* import { assertEquals } from "@std/assert";
*
* const foobar = new TextEncoder().encode("foobar");
* assertEquals(encodeBase64(foobar), "Zm9vYmFy");
* assertEquals(decodeBase64("Zm9vYmFy"), foobar);
* ```
*
* @module
*/
export * from "./ascii85.ts";
export * from "./base32.ts";
export * from "./base58.ts";
export * from "./base64.ts";
export * from "./base64url.ts";
export * from "./hex.ts";
export * from "./varint.ts";