0.0.2 • Published 2 years ago

@vs-org/base-32 v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vs-base-32

This is sample implementation of base 32 RFC-4648.

Usage

import { base32Encode } from "vs-base-32";

const encodedString = base32Encode("Cat"); // "INQXI==="
import { base32Decode } from "vs-base-32";

const decodedString = base32Decode("INQXI==="); // "Cat"