@thi.ng/leb128 3.1.81 → 3.1.83
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/README.md +10 -9
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
|
-
<!-- Please see: https://
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/leb128)
|
|
6
6
|

|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
10
|
> This is one of 214 standalone projects, maintained as part
|
|
11
|
-
> of the [@thi.ng/umbrella](https://
|
|
11
|
+
> of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
14
|
-
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
-
>
|
|
14
|
+
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
|
+
> me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
|
|
16
|
+
> Thank you! ❤️
|
|
16
17
|
|
|
17
18
|
- [About](#about)
|
|
18
19
|
- [Breaking changes](#breaking-changes)
|
|
@@ -34,7 +35,7 @@ The WASM binary (~860 bytes) is embedded as base64 string in the
|
|
|
34
35
|
TypeScript source to make it easier to use in both browser & node
|
|
35
36
|
environments. The source code of the actual implementation (written in
|
|
36
37
|
[Zig](https://ziglang.org)) is included in
|
|
37
|
-
[/zig/leb128.zig](https://
|
|
38
|
+
[/zig/leb128.zig](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/leb128/zig/leb128.zig)
|
|
38
39
|
|
|
39
40
|
All public functions throw an error if the WASM module could not be
|
|
40
41
|
initialized.
|
|
@@ -61,7 +62,7 @@ Furthermore, all values to be encoded/decoded are cast to i64/u64 range now.
|
|
|
61
62
|
|
|
62
63
|
**STABLE** - used in production
|
|
63
64
|
|
|
64
|
-
[Search or submit any issues for this package](https://
|
|
65
|
+
[Search or submit any issues for this package](https://codeberg.org/thi.ng/umbrella/issues?q=%5Bleb128%5D)
|
|
65
66
|
|
|
66
67
|
## Installation
|
|
67
68
|
|
|
@@ -93,8 +94,8 @@ Package sizes (brotli'd, pre-treeshake): ESM: 1.00 KB
|
|
|
93
94
|
|
|
94
95
|
## Dependencies
|
|
95
96
|
|
|
96
|
-
- [@thi.ng/checks](https://
|
|
97
|
-
- [@thi.ng/errors](https://
|
|
97
|
+
- [@thi.ng/checks](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/checks)
|
|
98
|
+
- [@thi.ng/errors](https://codeberg.org/thi.ng/umbrella/src/branch/develop/packages/errors)
|
|
98
99
|
|
|
99
100
|
## API
|
|
100
101
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/leb128",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.83",
|
|
4
4
|
"description": "WASM based LEB128 encoder / decoder (signed & unsigned)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://
|
|
11
|
+
"url": "git+https://codeberg.org/thi.ng/umbrella.git",
|
|
12
12
|
"directory": "packages/leb128"
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://thi.ng/binary",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@thi.ng/checks": "^3.8.
|
|
48
|
-
"@thi.ng/errors": "^2.6.
|
|
47
|
+
"@thi.ng/checks": "^3.8.8",
|
|
48
|
+
"@thi.ng/errors": "^2.6.7"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"esbuild": "^0.27.2",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"alias": "leb",
|
|
86
86
|
"year": 2019
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "8ddf86ea0a1e658ddbf19cc645b29d0c176e29c4\n"
|
|
89
89
|
}
|