Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

leb

Package Overview
Dependencies
Maintainers
4
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leb - npm Package Compare versions

Comparing version 0.4.0 to 1.0.0

16

CHANGELOG.md

@@ -15,2 +15,10 @@ Changelog

### v1.0.0 -- 2024-03-18
Breaking changes:
* None.
Other notable changes:
* Updated documentation.
### v0.4.0 -- 2024-03-18

@@ -28,1 +36,9 @@

* Published and then left to go to seed.
### History
This module was originally written by Dan Bornstein in 2012 and published to
`npm`. In 2024, Dan discovered that the original repo had been deleted, so he
took the module as published and turned it back into a repo in his account. His
assumption is that, having been deleted by the corporate entity that originally
funded it, the copyright effectively reverted to him.

46

package.json
{
"name": "leb",
"version": "0.4.0",
"keywords":
["leb", "leb128", "uleb128", "int", "uint",
"encoding", "decoding", "encode", "decode"],
"description":
"LEB128 utilities for Node",
"homepage": "https://github.com/danfuzz/leb",
"repository": {
"url": "git+https://github.com/danfuzz/leb"
},
"license": "Apache-2.0",
"author": {
"name": "Dan Bornstein",
"email": "hello-dan@murtbo.com",
"url": "http://www.milk.com/"
},
"version": "1.0.0",
"description": "LEB128 utilities for Node",
"keywords": [
"leb", "leb128", "uleb128", "int", "uint", "encoding", "decoding", "encode",
"decode"
],
"homepage": "https://github.com/danfuzz/leb",
"repository": {
"url": "git+https://github.com/danfuzz/leb"
},
"license": "Apache-2.0",
"author": {
"name": "Dan Bornstein",
"email": "hello-dan@murtbo.com",
"url": "http://www.milk.com/"
},
"main": "lib/leb.js",
"engine": {
"node": ">=0.6.0"
},
"main": "lib/leb.js",
"engine": {
"node": ">=0.6.0"
},
"scripts": {
"test": "node test/test.js"
}
"scripts": {
"test": "node test/test.js"
}
}

@@ -7,3 +7,3 @@ leb: LEB128 utilities for Node

LEB128, which is short for "Little-Endian Base 128") is somewhat like
LEB128, which is short for "Little-Endian Base 128", is somewhat like
UTF-8 in representing numbers using a variable number of bytes. Unlike

@@ -17,3 +17,3 @@ UTF-8, LEB128 uses just the high bit of each byte to determine the

is also used in Android's
[DEX file format](http://http://source.android.com/tech/dalvik/dex-format.html).
[DEX file format](https://source.android.com/docs/core/runtime/dex-format).

@@ -32,4 +32,3 @@ This module provides encoders and decoders for both signed and

Format Details
--------------
## Format Details

@@ -105,4 +104,3 @@ The LEB128 format is really quite simple.

Building and Installing
-----------------------
## Building and Installing

@@ -118,4 +116,3 @@ ```shell

Testing
-------
## Testing

@@ -133,4 +130,3 @@ ```shell

API Details
-----------
## API Details

@@ -220,11 +216,4 @@

To Do
-----
## Contributing
* Figure out something to do.
Contributing
------------
Questions, comments, bug reports, and pull requests are all welcome.

@@ -236,12 +225,2 @@

History
-------
This module was originally written by Dan Bornstein in 2012 and publised to
`npm`. In 2024, Dan discovered that the original repo had been deleted, so he
took the module as published and turned it back into a repo in his account. His
assumption is that, having been deleted by the corporate entity that originally
funded it, the copyright effectively reverted to him.
- - - - - - - - - -

@@ -248,0 +227,0 @@ ```

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc