polar_codec_wasm 1.0.1 โ 1.0.2
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ For native browser environments without bundlers, you can include the IIFE bundl
|
|
|
41
41
|
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Quick Start
|
|
45
45
|
|
|
46
46
|
### 1. Browser Environment (via CDN)
|
|
47
47
|
|
|
@@ -100,7 +100,7 @@ const decodedBits = codec.decode_bit(llr);
|
|
|
100
100
|
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
##
|
|
103
|
+
## API Reference
|
|
104
104
|
|
|
105
105
|
### `new PolarCodec(k, n?, l?, options?)`
|
|
106
106
|
|
|
@@ -145,7 +145,7 @@ const codec = new PolarCodec(96, 128, 4, {
|
|
|
145
145
|
|
|
146
146
|
```
|
|
147
147
|
|
|
148
|
-
##
|
|
148
|
+
## Examples
|
|
149
149
|
|
|
150
150
|
Runnable demos are located in the `examples/` directory. Clone the repo and run:
|
|
151
151
|
|
|
@@ -164,7 +164,7 @@ npx tsx examples/performance.ts
|
|
|
164
164
|
|
|
165
165
|
```
|
|
166
166
|
|
|
167
|
-
##
|
|
167
|
+
## Architecture & Build
|
|
168
168
|
|
|
169
169
|
```text
|
|
170
170
|
TypeScript API โโโบ wasm-bindgen โโโบ Rust Codec โโโบ polar_codec crate
|
package/package.json
CHANGED