JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 166400
  • Score
    100M100P100Q179184F
  • License Apache-2.0 OR MIT

Read/write varints from Uint8Arrays and Uint8ArrayLists

Package Exports

  • uint8-varint

Readme

uint8-varint

codecov CI

Read/write varints from Uint8Arrays and Uint8ArrayLists

Table of contents

Install

$ npm i uint8-varint

Usage

import { Uint8ArrayList } from 'uint8arraylist'
import * as varint from 'uint8-varint'

const value = 12345

const buf = new Uint8ArrayList(
  new Uint8Array(2)
)
varint.signed.encode(value, buf)

varint.signed.decode(buf) // 12345

License

Licensed under either of

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.