@@ -1705,6 +1705,9 @@ console.log(buf.readIntLE(0, 6).toString(16));
1705
1705
<!-- YAML
1706
1706
added: v0.5.0
1707
1707
changes:
1708
+ - version: REPLACEME
1709
+ pr-url: https://github.com/nodejs/node/pull/34729
1710
+ description: This function is also available as `buf.readUint8()`.
1708
1711
- version: v10.0.0
1709
1712
pr-url: https://github.com/nodejs/node/pull/18395
1710
1713
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1732,6 +1735,9 @@ console.log(buf.readUInt8(2));
1732
1735
<!-- YAML
1733
1736
added: v0.5.5
1734
1737
changes:
1738
+ - version: REPLACEME
1739
+ pr-url: https://github.com/nodejs/node/pull/34729
1740
+ description: This function is also available as `buf.readUint16BE()`.
1735
1741
- version: v10.0.0
1736
1742
pr-url: https://github.com/nodejs/node/pull/18395
1737
1743
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1758,6 +1764,9 @@ console.log(buf.readUInt16BE(1).toString(16));
1758
1764
<!-- YAML
1759
1765
added: v0.5.5
1760
1766
changes:
1767
+ - version: REPLACEME
1768
+ pr-url: https://github.com/nodejs/node/pull/34729
1769
+ description: This function is also available as `buf.readUint16LE()`.
1761
1770
- version: v10.0.0
1762
1771
pr-url: https://github.com/nodejs/node/pull/18395
1763
1772
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1786,6 +1795,9 @@ console.log(buf.readUInt16LE(2).toString(16));
1786
1795
<!-- YAML
1787
1796
added: v0.5.5
1788
1797
changes:
1798
+ - version: REPLACEME
1799
+ pr-url: https://github.com/nodejs/node/pull/34729
1800
+ description: This function is also available as `buf.readUint32BE()`.
1789
1801
- version: v10.0.0
1790
1802
pr-url: https://github.com/nodejs/node/pull/18395
1791
1803
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1810,6 +1822,9 @@ console.log(buf.readUInt32BE(0).toString(16));
1810
1822
<!-- YAML
1811
1823
added: v0.5.5
1812
1824
changes:
1825
+ - version: REPLACEME
1826
+ pr-url: https://github.com/nodejs/node/pull/34729
1827
+ description: This function is also available as `buf.readUint32LE()`.
1813
1828
- version: v10.0.0
1814
1829
pr-url: https://github.com/nodejs/node/pull/18395
1815
1830
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1836,6 +1851,9 @@ console.log(buf.readUInt32LE(1).toString(16));
1836
1851
<!-- YAML
1837
1852
added: v0.11.15
1838
1853
changes:
1854
+ - version: REPLACEME
1855
+ pr-url: https://github.com/nodejs/node/pull/34729
1856
+ description: This function is also available as `buf.readUintBE()`.
1839
1857
- version: v10.0.0
1840
1858
pr-url: https://github.com/nodejs/node/pull/18395
1841
1859
description: Removed `noAssert` and no implicit coercion of the offset
@@ -1865,6 +1883,9 @@ console.log(buf.readUIntBE(1, 6).toString(16));
1865
1883
<!-- YAML
1866
1884
added: v0.11.15
1867
1885
changes:
1886
+ - version: REPLACEME
1887
+ pr-url: https://github.com/nodejs/node/pull/34729
1888
+ description: This function is also available as `buf.readUintLE()`.
1868
1889
- version: v10.0.0
1869
1890
pr-url: https://github.com/nodejs/node/pull/18395
1870
1891
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2643,6 +2664,9 @@ console.log(buf);
2643
2664
<!-- YAML
2644
2665
added: v0.5.0
2645
2666
changes:
2667
+ - version: REPLACEME
2668
+ pr-url: https://github.com/nodejs/node/pull/34729
2669
+ description: This function is also available as `buf.writeUint8()`.
2646
2670
- version: v10.0.0
2647
2671
pr-url: https://github.com/nodejs/node/pull/18395
2648
2672
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2674,6 +2698,9 @@ console.log(buf);
2674
2698
<!-- YAML
2675
2699
added: v0.5.5
2676
2700
changes:
2701
+ - version: REPLACEME
2702
+ pr-url: https://github.com/nodejs/node/pull/34729
2703
+ description: This function is also available as `buf.writeUint16BE()`.
2677
2704
- version: v10.0.0
2678
2705
pr-url: https://github.com/nodejs/node/pull/18395
2679
2706
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2703,6 +2730,9 @@ console.log(buf);
2703
2730
<!-- YAML
2704
2731
added: v0.5.5
2705
2732
changes:
2733
+ - version: REPLACEME
2734
+ pr-url: https://github.com/nodejs/node/pull/34729
2735
+ description: This function is also available as `buf.writeUint16LE()`.
2706
2736
- version: v10.0.0
2707
2737
pr-url: https://github.com/nodejs/node/pull/18395
2708
2738
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2732,6 +2762,9 @@ console.log(buf);
2732
2762
<!-- YAML
2733
2763
added: v0.5.5
2734
2764
changes:
2765
+ - version: REPLACEME
2766
+ pr-url: https://github.com/nodejs/node/pull/34729
2767
+ description: This function is also available as `buf.writeUint32BE()`.
2735
2768
- version: v10.0.0
2736
2769
pr-url: https://github.com/nodejs/node/pull/18395
2737
2770
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2760,6 +2793,9 @@ console.log(buf);
2760
2793
<!-- YAML
2761
2794
added: v0.5.5
2762
2795
changes:
2796
+ - version: REPLACEME
2797
+ pr-url: https://github.com/nodejs/node/pull/34729
2798
+ description: This function is also available as `buf.writeUint32LE()`.
2763
2799
- version: v10.0.0
2764
2800
pr-url: https://github.com/nodejs/node/pull/18395
2765
2801
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2788,6 +2824,9 @@ console.log(buf);
2788
2824
<!-- YAML
2789
2825
added: v0.5.5
2790
2826
changes:
2827
+ - version: REPLACEME
2828
+ pr-url: https://github.com/nodejs/node/pull/34729
2829
+ description: This function is also available as `buf.writeUintBE()`.
2791
2830
- version: v10.0.0
2792
2831
pr-url: https://github.com/nodejs/node/pull/18395
2793
2832
description: Removed `noAssert` and no implicit coercion of the offset
@@ -2818,6 +2857,9 @@ console.log(buf);
2818
2857
<!-- YAML
2819
2858
added: v0.5.5
2820
2859
changes:
2860
+ - version: REPLACEME
2861
+ pr-url: https://github.com/nodejs/node/pull/34729
2862
+ description: This function is also available as `buf.writeUintLE()`.
2821
2863
- version: v10.0.0
2822
2864
pr-url: https://github.com/nodejs/node/pull/18395
2823
2865
description: Removed `noAssert` and no implicit coercion of the offset
0 commit comments