mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
f8f5444478
* BREAKING(encoding): remove deprecated VarInt APIs * update
27 lines
730 B
TypeScript
27 lines
730 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.
|
|
*
|
|
* This module is browser compatible.
|
|
*
|
|
* ```ts
|
|
* import { encodeBase64, decodeBase64 } from "@std/encoding";
|
|
* import { assertEquals } from "@std/assert/assert-equals";
|
|
*
|
|
* 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";
|