@thi.ng/bitstream 2.2.15 → 2.2.17
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 +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -164,7 +164,7 @@ faster `readBit()` for reading single bits.
|
|
|
164
164
|
|
|
165
165
|
### Barebones alternatives
|
|
166
166
|
|
|
167
|
-
For use cases requiring only word sizes <=8 bits and none of the advanced features provided by the above implementations, the package also provides functional barebones alternatives in the form of [`bitWriter()`](https://docs.thi.ng/umbrella/bitstream/
|
|
167
|
+
For use cases requiring only word sizes <=8 bits and none of the advanced features provided by the above implementations, the package also provides functional barebones alternatives in the form of [`bitWriter()`](https://docs.thi.ng/umbrella/bitstream/functions/bitWriter.html) and [`bitReader()`](https://docs.thi.ng/umbrella/bitstream/functions/bitReader.html):
|
|
168
168
|
|
|
169
169
|
```ts
|
|
170
170
|
import { bitReader, bitWriter } from "@thi.ng/bistream";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/bitstream",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.17",
|
|
4
4
|
"description": "ES6 iterator based read/write bit streams with support for variable word widths",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/errors": "^2.2.
|
|
37
|
+
"@thi.ng/errors": "^2.2.12"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@microsoft/api-extractor": "^7.34.2",
|
|
41
|
-
"@thi.ng/testament": "^0.3.
|
|
41
|
+
"@thi.ng/testament": "^0.3.12",
|
|
42
42
|
"rimraf": "^4.1.2",
|
|
43
43
|
"tools": "^0.0.1",
|
|
44
44
|
"typedoc": "^0.23.24",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"rle-pack"
|
|
82
82
|
]
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "8ab2cbfe2f59b7ef672b6e1cf2a43368f8437ddf\n"
|
|
85
85
|
}
|