@thi.ng/leb128 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +6 -9
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
3
|
+
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/leb128)
|
|
6
6
|

|
|
7
|
-
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
This project is part of the
|
|
10
10
|
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
|
|
@@ -70,11 +70,8 @@ ES module import:
|
|
|
70
70
|
|
|
71
71
|
For Node.js REPL:
|
|
72
72
|
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
node --experimental-repl-await
|
|
76
|
-
|
|
77
|
-
> const leb128 = await import("@thi.ng/leb128");
|
|
73
|
+
```js
|
|
74
|
+
const leb128 = await import("@thi.ng/leb128");
|
|
78
75
|
```
|
|
79
76
|
|
|
80
77
|
Package sizes (brotli'd, pre-treeshake): ESM: 876 bytes
|
|
@@ -134,7 +131,7 @@ yarn test
|
|
|
134
131
|
|
|
135
132
|
## Authors
|
|
136
133
|
|
|
137
|
-
Karsten Schmidt
|
|
134
|
+
- [Karsten Schmidt](https://thi.ng)
|
|
138
135
|
|
|
139
136
|
If this project contributes to an academic publication, please cite it as:
|
|
140
137
|
|
|
@@ -149,4 +146,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
149
146
|
|
|
150
147
|
## License
|
|
151
148
|
|
|
152
|
-
© 2019 - 2022 Karsten Schmidt // Apache
|
|
149
|
+
© 2019 - 2022 Karsten Schmidt // Apache License 2.0
|
package/binary.d.ts
CHANGED
package/binary.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/leb128",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "WASM based LEB128 encoder / decoder (signed & unsigned)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://patreon.com/thing_umbrella"
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
|
-
"author": "Karsten Schmidt
|
|
24
|
+
"author": "Karsten Schmidt (https://thi.ng)",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "yarn clean && tsc --declaration",
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
"test": "testament test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/errors": "^2.2.
|
|
40
|
-
"@thi.ng/transducers-binary": "^2.1.
|
|
38
|
+
"@thi.ng/checks": "^3.3.5",
|
|
39
|
+
"@thi.ng/errors": "^2.2.6",
|
|
40
|
+
"@thi.ng/transducers-binary": "^2.1.31"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@microsoft/api-extractor": "^7.33.
|
|
44
|
-
"@thi.ng/testament": "^0.3.
|
|
43
|
+
"@microsoft/api-extractor": "^7.33.7",
|
|
44
|
+
"@thi.ng/testament": "^0.3.7",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"tools": "^0.0.1",
|
|
47
|
-
"typedoc": "^0.23.
|
|
48
|
-
"typescript": "^4.
|
|
47
|
+
"typedoc": "^0.23.22",
|
|
48
|
+
"typescript": "^4.9.4"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
51
51
|
"64bit",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"thi.ng": {
|
|
80
80
|
"year": 2019
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "f445a9cc8022bcdebbf6ff91fd66ced016d72f01\n"
|
|
83
83
|
}
|