An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

[![CI](https://github.com/iamskok/bigint-base62/actions/workflows/ci.yml/badge.svg)](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"
```