Socket
Socket
Sign inDemoInstall

uint8-varint

Package Overview
Dependencies
3
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    uint8-varint

Read/write unsigned varints from Uint8Arrays and Uint8ArrayLists


Version published
Weekly downloads
46K
increased by10.22%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

2.0.4 (2024-01-30)

Dependencies

  • dev: bump aegir from 41.3.5 to 42.2.2 (#47) (568a0df)

Readme

Source

uint8-varint

codecov CI

Read/write unsigned varints from Uint8Arrays and Uint8ArrayLists

Table of contents

Install

$ npm i uint8-varint

Browser <script> tag

Loading this module through a script tag will make it's exports available as Uint8Varint in the global namespace.

<script src="https://unpkg.com/uint8-varint/dist/index.min.js"></script>

Usage

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

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.

FAQs

Last updated on 30 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc