bireader 1.0.47 → 1.0.48

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/lib/esm/index.mjs CHANGED
@@ -1597,7 +1597,7 @@ function wstring(_this, string, options) {
1597
1597
  /**
1598
1598
  * Binary reader, includes bitfields and strings
1599
1599
  *
1600
- * @param {Buffer|Uint8Array} data - ``Buffer`` or ``Uint8Array``. Always found in ``biwriter.data``
1600
+ * @param {Buffer|Uint8Array} data - ``Buffer`` or ``Uint8Array``. Always found in ``bireader.data``
1601
1601
  * @param {number} byteOffset - Byte offset to start reader (default 0)
1602
1602
  * @param {number} bitOffset - Bit offset 0-7 to start reader (default 0)
1603
1603
  * @param {string} endianness - Endianness ``big`` or ``little`` (default ``little``)
@@ -1613,7 +1613,7 @@ export class bireader {
1613
1613
  /**
1614
1614
  * Binary reader, includes bitfields and strings
1615
1615
  *
1616
- * @param {Buffer|Uint8Array} data - ``Buffer`` or ``Uint8Array``. Always found in ``biwriter.data``
1616
+ * @param {Buffer|Uint8Array} data - ``Buffer`` or ``Uint8Array``. Always found in ``bireader.data``
1617
1617
  * @param {number} byteOffset - Byte offset to start reader (default 0)
1618
1618
  * @param {number} bitOffset - Bit offset 0-7 to start reader (default 0)
1619
1619
  * @param {string} endianness - Endianness ``big`` or ``little`` (default ``little``)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bireader",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "Read and write data in binary",
5
5
  "module": "lib/esm/index.mjs",
6
6
  "main": "lib/cjs/index.js",