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

vlq

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vlq - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

10

package.json

@@ -7,3 +7,3 @@ {

"license": "MIT",
"version": "2.0.1",
"version": "2.0.2",
"type": "module",

@@ -32,3 +32,9 @@ "exports": {

"prepublishOnly": "npm test && npm run build"
}
},
"keywords": [
"sourcemap",
"sourcemaps",
"base64",
"vlq"
]
}

16

README.md

@@ -30,11 +30,3 @@ # vlq.js

...or...
```bash
bower install vlq
```
...or grab the vlq.js file and include it with a `<script src='vlq.js'>` tag.
## Usage

@@ -47,4 +39,4 @@

```js
vlq.encode( 123 ); // '2H';
vlq.encode([ 123, 456, 789 ]); // '2HwcqxB'
vlq.encode(123); // '2H';
vlq.encode([123, 456, 789]); // '2HwcqxB'
```

@@ -57,4 +49,4 @@

```js
vlq.decode( '2H' ); // [ 123 ]
vlq.decode( '2HwcqxB' ); // [ 123, 456, 789 ]
vlq.decode('2H'); // [123]
vlq.decode('2HwcqxB'); // [123, 456, 789]
```

@@ -61,0 +53,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