@@ -1583,7 +1583,7 @@ endian format (`readDoubleBE()` returns big endian, `readDoubleLE()` returns
1583
1583
little endian).
1584
1584
1585
1585
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1586
- the result should be considered undefined behavior .
1586
+ the resulting behavior is undefined.
1587
1587
1588
1588
Examples:
1589
1589
@@ -1619,7 +1619,7 @@ endian format (`readFloatBE()` returns big endian, `readFloatLE()` returns
1619
1619
little endian).
1620
1620
1621
1621
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1622
- the result should be considered undefined behavior .
1622
+ the resulting behavior is undefined.
1623
1623
1624
1624
Examples:
1625
1625
@@ -1652,7 +1652,7 @@ added: v0.5.0
1652
1652
Reads a signed 8-bit integer from ` buf ` at the specified ` offset ` .
1653
1653
1654
1654
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1655
- the result should be considered undefined behavior .
1655
+ the resulting behavior is undefined.
1656
1656
1657
1657
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1658
1658
@@ -1686,7 +1686,7 @@ the specified endian format (`readInt16BE()` returns big endian,
1686
1686
` readInt16LE() ` returns little endian).
1687
1687
1688
1688
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1689
- the result should be considered undefined behavior .
1689
+ the resulting behavior is undefined.
1690
1690
1691
1691
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1692
1692
@@ -1720,7 +1720,7 @@ the specified endian format (`readInt32BE()` returns big endian,
1720
1720
` readInt32LE() ` returns little endian).
1721
1721
1722
1722
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1723
- the result should be considered undefined behavior .
1723
+ the resulting behavior is undefined.
1724
1724
1725
1725
Integers read from a ` Buffer ` are interpreted as two's complement signed values.
1726
1726
@@ -1755,7 +1755,7 @@ and interprets the result as a two's complement signed value. Supports up to 48
1755
1755
bits of accuracy.
1756
1756
1757
1757
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1758
- the result should be considered undefined behavior .
1758
+ the resulting behavior is undefined.
1759
1759
1760
1760
Examples:
1761
1761
@@ -1784,7 +1784,7 @@ added: v0.5.0
1784
1784
Reads an unsigned 8-bit integer from ` buf ` at the specified ` offset ` .
1785
1785
1786
1786
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1787
- the result should be considered undefined behavior .
1787
+ the resulting behavior is undefined.
1788
1788
1789
1789
Examples:
1790
1790
@@ -1816,7 +1816,7 @@ specified endian format (`readUInt16BE()` returns big endian, `readUInt16LE()`
1816
1816
returns little endian).
1817
1817
1818
1818
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1819
- the result should be considered undefined behavior .
1819
+ the resulting behavior is undefined.
1820
1820
1821
1821
Examples:
1822
1822
@@ -1854,7 +1854,7 @@ specified endian format (`readUInt32BE()` returns big endian,
1854
1854
` readUInt32LE() ` returns little endian).
1855
1855
1856
1856
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1857
- the result should be considered undefined behavior .
1857
+ the resulting behavior is undefined.
1858
1858
1859
1859
Examples:
1860
1860
@@ -1887,7 +1887,7 @@ and interprets the result as an unsigned integer. Supports up to 48
1887
1887
bits of accuracy.
1888
1888
1889
1889
Setting ` noAssert ` to ` true ` allows ` offset ` to be beyond the end of ` buf ` , but
1890
- the result should be considered undefined behavior .
1890
+ the resulting behavior is undefined.
1891
1891
1892
1892
Examples:
1893
1893
@@ -2225,7 +2225,7 @@ endian). `value` *should* be a valid 64-bit double. Behavior is undefined when
2225
2225
` value ` is anything other than a 64-bit double.
2226
2226
2227
2227
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2228
- the end of ` buf ` , but the result should be considered undefined behavior .
2228
+ the end of ` buf ` , but the resulting behavior is undefined.
2229
2229
2230
2230
Examples:
2231
2231
@@ -2260,7 +2260,7 @@ endian). `value` *should* be a valid 32-bit float. Behavior is undefined when
2260
2260
` value ` is anything other than a 32-bit float.
2261
2261
2262
2262
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2263
- the end of ` buf ` , but the result should be considered undefined behavior .
2263
+ the end of ` buf ` , but the resulting behavior is undefined.
2264
2264
2265
2265
Examples:
2266
2266
@@ -2293,7 +2293,7 @@ signed 8-bit integer. Behavior is undefined when `value` is anything other than
2293
2293
a signed 8-bit integer.
2294
2294
2295
2295
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2296
- the end of ` buf ` , but the result should be considered undefined behavior .
2296
+ the end of ` buf ` , but the resulting behavior is undefined.
2297
2297
2298
2298
` value ` is interpreted and written as a two's complement signed integer.
2299
2299
@@ -2326,7 +2326,7 @@ endian). `value` *should* be a valid signed 16-bit integer. Behavior is undefine
2326
2326
when ` value ` is anything other than a signed 16-bit integer.
2327
2327
2328
2328
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2329
- the end of ` buf ` , but the result should be considered undefined behavior .
2329
+ the end of ` buf ` , but the resulting behavior is undefined.
2330
2330
2331
2331
` value ` is interpreted and written as a two's complement signed integer.
2332
2332
@@ -2359,7 +2359,7 @@ endian). `value` *should* be a valid signed 32-bit integer. Behavior is undefine
2359
2359
when ` value ` is anything other than a signed 32-bit integer.
2360
2360
2361
2361
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2362
- the end of ` buf ` , but the result should be considered undefined behavior .
2362
+ the end of ` buf ` , but the resulting behavior is undefined.
2363
2363
2364
2364
` value ` is interpreted and written as a two's complement signed integer.
2365
2365
@@ -2393,7 +2393,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is
2393
2393
anything other than a signed integer.
2394
2394
2395
2395
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2396
- the end of ` buf ` , but the result should be considered undefined behavior .
2396
+ the end of ` buf ` , but the resulting behavior is undefined.
2397
2397
2398
2398
Examples:
2399
2399
@@ -2426,7 +2426,7 @@ valid unsigned 8-bit integer. Behavior is undefined when `value` is anything
2426
2426
other than an unsigned 8-bit integer.
2427
2427
2428
2428
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2429
- the end of ` buf ` , but the result should be considered undefined behavior .
2429
+ the end of ` buf ` , but the resulting behavior is undefined.
2430
2430
2431
2431
Examples:
2432
2432
@@ -2459,7 +2459,7 @@ endian). `value` should be a valid unsigned 16-bit integer. Behavior is
2459
2459
undefined when ` value ` is anything other than an unsigned 16-bit integer.
2460
2460
2461
2461
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2462
- the end of ` buf ` , but the result should be considered undefined behavior .
2462
+ the end of ` buf ` , but the resulting behavior is undefined.
2463
2463
2464
2464
Examples:
2465
2465
@@ -2496,7 +2496,7 @@ endian). `value` should be a valid unsigned 32-bit integer. Behavior is
2496
2496
undefined when ` value ` is anything other than an unsigned 32-bit integer.
2497
2497
2498
2498
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2499
- the end of ` buf ` , but the result should be considered undefined behavior .
2499
+ the end of ` buf ` , but the resulting behavior is undefined.
2500
2500
2501
2501
Examples:
2502
2502
@@ -2532,7 +2532,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is
2532
2532
anything other than an unsigned integer.
2533
2533
2534
2534
Setting ` noAssert ` to ` true ` allows the encoded form of ` value ` to extend beyond
2535
- the end of ` buf ` , but the result should be considered undefined behavior .
2535
+ the end of ` buf ` , but the resulting behavior is undefined.
2536
2536
2537
2537
Examples:
2538
2538
0 commit comments