@@ -1591,7 +1591,7 @@ endian format (`readDoubleBE()` returns big endian, `readDoubleLE()` returns
1591
1591
little endian).
1592
1592
1593
1593
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1594
- the result should be considered undefined behavior .
1594
+ the resulting behavior is undefined.
1595
1595
1596
1596
Examples:
1597
1597
@@ -1627,7 +1627,7 @@ endian format (`readFloatBE()` returns big endian, `readFloatLE()` returns
1627
1627
little endian).
1628
1628
1629
1629
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1630
- the result should be considered undefined behavior .
1630
+ the resulting behavior is undefined.
1631
1631
1632
1632
Examples:
1633
1633
@@ -1660,7 +1660,7 @@ added: v0.5.0
1660
1660
Reads a signed 8-bit integer from ` buf ` at the specified ` offset ` .
1661
1661
1662
1662
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1663
- the result should be considered undefined behavior .
1663
+ the resulting behavior is undefined.
1664
1664
1665
1665
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1666
1666
@@ -1694,7 +1694,7 @@ the specified endian format (`readInt16BE()` returns big endian,
1694
1694
` readInt16LE() ` returns little endian).
1695
1695
1696
1696
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1697
- the result should be considered undefined behavior .
1697
+ the resulting behavior is undefined.
1698
1698
1699
1699
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1700
1700
@@ -1728,7 +1728,7 @@ the specified endian format (`readInt32BE()` returns big endian,
1728
1728
` readInt32LE() ` returns little endian).
1729
1729
1730
1730
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1731
- the result should be considered undefined behavior .
1731
+ the resulting behavior is undefined.
1732
1732
1733
1733
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1734
1734
@@ -1763,7 +1763,7 @@ and interprets the result as a two's complement signed value. Supports up to 48
1763
1763
bits of accuracy.
1764
1764
1765
1765
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1766
- the result should be considered undefined behavior .
1766
+ the resulting behavior is undefined.
1767
1767
1768
1768
Examples:
1769
1769
@@ -1795,7 +1795,7 @@ added: v0.5.0
1795
1795
Reads an unsigned 8-bit integer from ` buf ` at the specified ` offset ` .
1796
1796
1797
1797
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1798
- the result should be considered undefined behavior .
1798
+ the resulting behavior is undefined.
1799
1799
1800
1800
Examples:
1801
1801
@@ -1827,7 +1827,7 @@ specified endian format (`readUInt16BE()` returns big endian, `readUInt16LE()`
1827
1827
returns little endian).
1828
1828
1829
1829
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1830
- the result should be considered undefined behavior .
1830
+ the resulting behavior is undefined.
1831
1831
1832
1832
Examples:
1833
1833
@@ -1865,7 +1865,7 @@ specified endian format (`readUInt32BE()` returns big endian,
1865
1865
` readUInt32LE() ` returns little endian).
1866
1866
1867
1867
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1868
- the result should be considered undefined behavior .
1868
+ the resulting behavior is undefined.
1869
1869
1870
1870
Examples:
1871
1871
@@ -1898,7 +1898,7 @@ and interprets the result as an unsigned integer. Supports up to 48
1898
1898
bits of accuracy.
1899
1899
1900
1900
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1901
- the result should be considered undefined behavior .
1901
+ the resulting behavior is undefined.
1902
1902
1903
1903
Examples:
1904
1904
@@ -2236,7 +2236,7 @@ endian). `value` *should* be a valid 64-bit double. Behavior is undefined when
2236
2236
` value ` is anything other than a 64-bit double.
2237
2237
2238
2238
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2239
- the end of ` buf ` , but the result should be considered undefined behavior .
2239
+ the end of ` buf ` , but the resulting behavior is undefined.
2240
2240
2241
2241
Examples:
2242
2242
@@ -2271,7 +2271,7 @@ endian). `value` *should* be a valid 32-bit float. Behavior is undefined when
2271
2271
` value ` is anything other than a 32-bit float.
2272
2272
2273
2273
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2274
- the end of ` buf ` , but the result should be considered undefined behavior .
2274
+ the end of ` buf ` , but the resulting behavior is undefined.
2275
2275
2276
2276
Examples:
2277
2277
@@ -2304,7 +2304,7 @@ signed 8-bit integer. Behavior is undefined when `value` is anything other than
2304
2304
a signed 8-bit integer.
2305
2305
2306
2306
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2307
- the end of ` buf ` , but the result should be considered undefined behavior .
2307
+ the end of ` buf ` , but the resulting behavior is undefined.
2308
2308
2309
2309
` value ` is interpreted and written as a two's complement signed integer.
2310
2310
@@ -2337,7 +2337,7 @@ endian). `value` *should* be a valid signed 16-bit integer. Behavior is undefine
2337
2337
when ` value ` is anything other than a signed 16-bit integer.
2338
2338
2339
2339
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2340
- the end of ` buf ` , but the result should be considered undefined behavior .
2340
+ the end of ` buf ` , but the resulting behavior is undefined.
2341
2341
2342
2342
` value ` is interpreted and written as a two's complement signed integer.
2343
2343
@@ -2370,7 +2370,7 @@ endian). `value` *should* be a valid signed 32-bit integer. Behavior is undefine
2370
2370
when ` value ` is anything other than a signed 32-bit integer.
2371
2371
2372
2372
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2373
- the end of ` buf ` , but the result should be considered undefined behavior .
2373
+ the end of ` buf ` , but the resulting behavior is undefined.
2374
2374
2375
2375
` value ` is interpreted and written as a two's complement signed integer.
2376
2376
@@ -2404,7 +2404,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is
2404
2404
anything other than a signed integer.
2405
2405
2406
2406
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2407
- the end of ` buf ` , but the result should be considered undefined behavior .
2407
+ the end of ` buf ` , but the resulting behavior is undefined.
2408
2408
2409
2409
Examples:
2410
2410
@@ -2437,7 +2437,7 @@ valid unsigned 8-bit integer. Behavior is undefined when `value` is anything
2437
2437
other than an unsigned 8-bit integer.
2438
2438
2439
2439
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2440
- the end of ` buf ` , but the result should be considered undefined behavior .
2440
+ the end of ` buf ` , but the resulting behavior is undefined.
2441
2441
2442
2442
Examples:
2443
2443
@@ -2470,7 +2470,7 @@ endian). `value` should be a valid unsigned 16-bit integer. Behavior is
2470
2470
undefined when ` value ` is anything other than an unsigned 16-bit integer.
2471
2471
2472
2472
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2473
- the end of ` buf ` , but the result should be considered undefined behavior .
2473
+ the end of ` buf ` , but the resulting behavior is undefined.
2474
2474
2475
2475
Examples:
2476
2476
@@ -2507,7 +2507,7 @@ endian). `value` should be a valid unsigned 32-bit integer. Behavior is
2507
2507
undefined when ` value ` is anything other than an unsigned 32-bit integer.
2508
2508
2509
2509
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2510
- the end of ` buf ` , but the result should be considered undefined behavior .
2510
+ the end of ` buf ` , but the resulting behavior is undefined.
2511
2511
2512
2512
Examples:
2513
2513
@@ -2543,7 +2543,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is
2543
2543
anything other than an unsigned integer.
2544
2544
2545
2545
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2546
- the end of ` buf ` , but the result should be considered undefined behavior .
2546
+ the end of ` buf ` , but the resulting behavior is undefined.
2547
2547
2548
2548
Examples:
2549
2549
0 commit comments