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