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

https://github.com/anzerr/uint

format int into bases
https://github.com/anzerr/uint

int nodejs util

Last synced: about 2 months ago
JSON representation

format int into bases

Awesome Lists containing this project

README

          

### `Intro`
![GitHub Actions status | publish](https://github.com/anzerr/uint/workflows/publish/badge.svg)

Util to format unsigned int to bases (hex, int4, int5, dec, int8)

#### `Install`
``` bash
npm install --save git+https://github.com/anzerr/uint.git
npm install --save @anzerr/uint
```

### `Example`
``` javascript
const uint = require('uint');
console.log(uint.uint8.toHex([10, 100])); // 0A64
````