Socket
Book a DemoInstallSign in
Socket

compact-uint

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compact-uint

Compact Size Unsigned Integers

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

compact-uint

Compact Size Unsigned Integers in JS

npm install compact-uint

Usage

const cuint = require('compact-uint')

cuint.encode(12) // -> Buffer([0x0c])
cuint.encode(123) // -> Buffer([0x7b])
cuint.encode(1234) // -> Buffer([0xfc04d2])

API

buf = cuint.encode(uint, [buf], [offset])

Encodes a uint into a buffer using the compact size spec. After encoding encode.bytes is set to the number of bytes that was used to encode the number.

len = cuint.encodingLength(uint)

How many bytes are needed to encode a uint?

uint = cuint.decode(buf, [offset])

Decode a uint from a buffer. After decoding decode.bytes is set to the number of bytes that was used to decode the number.

License

MIT

FAQs

Package last updated on 15 Feb 2021

Did you know?

Socket

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