@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-02-10T14:03:10Z
3
+ - **Last updated**: 2023-03-09T13:01:59Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
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/modules.html#bitWriter) and [`bitReader()`](https://docs.thi.ng/umbrella/bitstream/modules.html#bitReader):
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.15",
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.11"
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.11",
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": "cafa4ecea90fb681949dc3885a5bd6ddefa38b51\n"
84
+ "gitHead": "8ab2cbfe2f59b7ef672b6e1cf2a43368f8437ddf\n"
85
85
  }