Comparing version 2.0.1 to 2.0.2
@@ -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" | ||
] | ||
} |
@@ -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 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5897
70