https://github.com/iamskok/bigint-base62
BigInt Base62 codec
https://github.com/iamskok/bigint-base62
base62 bigint codec
Last synced: 3 months ago
JSON representation
BigInt Base62 codec
- Host: GitHub
- URL: https://github.com/iamskok/bigint-base62
- Owner: iamskok
- License: mit
- Created: 2021-07-17T00:42:24.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-04-13T09:53:51.000Z (3 months ago)
- Last Synced: 2025-04-14T19:13:14.037Z (3 months ago)
- Topics: base62, bigint, codec
- Language: TypeScript
- Homepage:
- Size: 255 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/iamskok/bigint-base62/actions/workflows/ci.yml)
BigInt Base62 codec
Base62 codec that supports numbers greater than `Number.MAX_SAFE_INTEGER`.
## Installation
```sh
yarn add bigint-base62
```## Usage
```
encode("1111111111111111111111111111111111111111") // "prkIoxEMsYZR5feGSINceX"
decode("prkIoxEMsYZR5feGSINceX") // "1111111111111111111111111111111111111111"
```