Base32 (RFC 4648) for the web
npm i @hazae41/base32- 100% TypeScript and ESM
- No external dependency
import { base32 } from "@hazae41/base32"
const text = base32.encode(Uint8Array.fromHex("deadbeef"))
console.log(text) // MRSWCZDCMVSWM===
const data = base32.decode(text)