# uint8-varint
[](https://codecov.io/gh/achingbrain/uint8-varint)
[](https://github.com/achingbrain/uint8-varint/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
> Read/write unsigned varints from Uint8Arrays and Uint8ArrayLists
## Table of contents
- [Install](#install)
- [Browser `
```
## Usage
```js
import { Uint8ArrayList } from 'uint8arraylist'
import * as varint from 'uint8-varint'
const value = 12345
const buf = new Uint8ArrayList(
new Uint8Array(2)
)
varint.encode(value, buf)
varint.decode(buf) // 12345
```
## API Docs
-
## License
Licensed under either of
- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / )
- MIT ([LICENSE-MIT](LICENSE-MIT) / )
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.