std/encoding
2024-04-02 21:42:55 +11:00
..
_util_test.ts chore: update copyright year (#4046) 2024-01-02 08:11:32 +11:00
_util.ts chore: update copyright year (#4046) 2024-01-02 08:11:32 +11:00
ascii85_test.ts refactor: make the code work under verbatimModuleSyntax (#4406) 2024-02-27 21:57:25 +00:00
ascii85.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
base32_test.ts refactor(encoding): prepare for noUncheckedIndexedAccess (#4275) 2024-02-25 07:24:08 +11:00
base32.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
base58_test.ts refactor(encoding): prepare for noUncheckedIndexedAccess (#4275) 2024-02-25 07:24:08 +11:00
base58.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
base64_test.ts refactor(encoding): prepare for noUncheckedIndexedAccess (#4275) 2024-02-25 07:24:08 +11:00
base64.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
base64url_test.ts refactor(encoding): prepare for noUncheckedIndexedAccess (#4275) 2024-02-25 07:24:08 +11:00
base64url.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
hex_test.ts chore: update copyright year (#4046) 2024-01-02 08:11:32 +11:00
hex.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
README.md docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00
varint_test.ts chore: update copyright year (#4046) 2024-01-02 08:11:32 +11:00
varint.ts docs(encoding): polish documentation (#4497) 2024-04-02 21:42:55 +11:00

Utilities for encoding and decoding common formats like hex, base64, and varint.

This module is browser compatible.

import { encodeBase64 } from "https://deno.land/std@$STD_VERSION/encoding/base64.ts";

encodeBase64("foobar"); // "Zm9vYmFy"