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
- Host: GitHub
- URL: https://github.com/anzerr/uint
- Owner: anzerr
- License: mit
- Created: 2018-07-13T09:33:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T16:12:40.000Z (almost 4 years ago)
- Last Synced: 2025-02-06T19:17:41.431Z (11 months ago)
- Topics: int, nodejs, util
- Language: JavaScript
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### `Intro`

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
````