Socket
Socket
Sign inDemoInstall

leb128

Package Overview
Dependencies
3
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    leb128

LEB128 encoding and decoding for signed and unsinged intergers


Version published
Weekly downloads
11K
decreased by-17.96%
Maintainers
1
Install size
215 kB
Created
Weekly downloads
 

Readme

Source

SYNOPSIS

NPM Package Build Status Coverage Status

js-standard-style

LEB128 encoding and decoding for signed and unsinged intergers. Supports arbitary length intergers larger then Number.MAX_SAFE_INTEGER

INSTALL

npm install leb128

USAGE

const leb = require('leb128')
let encoded = leb.unsigned.encode('9019283812387')
console.log(encoded)
// <Buffer a3 e0 d4 b9 bf 86 02>

let decoded = leb.unsigned.decode(encoded)
console.log(decoded)
// 9019283812387

encoded = leb.signed.encode('-9019283812387')
console.log(encoded)
// <Buffer dd 9f ab c6 c0 f9 7d>

decoded = leb.signed.decode(encoded)
console.log(decoded)
// '-9019283812387'

API

Use require('leb128/signed') for signed encoding and decoding and require('leb128/unsigned') for unsigned methods

encode

LEB128 encodeds an intergerl.

Parameters

Returns Buffer

decode

decodes a LEB128 encoded interger

Parameters

Returns String

LICENSE

MPL-2.0

Keywords

FAQs

Last updated on 26 Jul 2019

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