@@ -1709,6 +1709,9 @@ console.log(buf.readIntLE(0, 6).toString(16));
17091709<!-- YAML
17101710added: v0.5.0
17111711changes:
1712+ - version: REPLACEME
1713+ pr-url: https://github.com/nodejs/node/pull/34729
1714+ description: This function is also available as `buf.readUint8()`.
17121715 - version: v10.0.0
17131716 pr-url: https://github.com/nodejs/node/pull/18395
17141717 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1736,6 +1739,9 @@ console.log(buf.readUInt8(2));
17361739<!-- YAML
17371740added: v0.5.5
17381741changes:
1742+ - version: REPLACEME
1743+ pr-url: https://github.com/nodejs/node/pull/34729
1744+ description: This function is also available as `buf.readUint16BE()`.
17391745 - version: v10.0.0
17401746 pr-url: https://github.com/nodejs/node/pull/18395
17411747 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1762,6 +1768,9 @@ console.log(buf.readUInt16BE(1).toString(16));
17621768<!-- YAML
17631769added: v0.5.5
17641770changes:
1771+ - version: REPLACEME
1772+ pr-url: https://github.com/nodejs/node/pull/34729
1773+ description: This function is also available as `buf.readUint16LE()`.
17651774 - version: v10.0.0
17661775 pr-url: https://github.com/nodejs/node/pull/18395
17671776 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1790,6 +1799,9 @@ console.log(buf.readUInt16LE(2).toString(16));
17901799<!-- YAML
17911800added: v0.5.5
17921801changes:
1802+ - version: REPLACEME
1803+ pr-url: https://github.com/nodejs/node/pull/34729
1804+ description: This function is also available as `buf.readUint32BE()`.
17931805 - version: v10.0.0
17941806 pr-url: https://github.com/nodejs/node/pull/18395
17951807 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1814,6 +1826,9 @@ console.log(buf.readUInt32BE(0).toString(16));
18141826<!-- YAML
18151827added: v0.5.5
18161828changes:
1829+ - version: REPLACEME
1830+ pr-url: https://github.com/nodejs/node/pull/34729
1831+ description: This function is also available as `buf.readUint32LE()`.
18171832 - version: v10.0.0
18181833 pr-url: https://github.com/nodejs/node/pull/18395
18191834 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1840,6 +1855,9 @@ console.log(buf.readUInt32LE(1).toString(16));
18401855<!-- YAML
18411856added: v0.11.15
18421857changes:
1858+ - version: REPLACEME
1859+ pr-url: https://github.com/nodejs/node/pull/34729
1860+ description: This function is also available as `buf.readUintBE()`.
18431861 - version: v10.0.0
18441862 pr-url: https://github.com/nodejs/node/pull/18395
18451863 description: Removed `noAssert` and no implicit coercion of the offset
@@ -1869,6 +1887,9 @@ console.log(buf.readUIntBE(1, 6).toString(16));
18691887<!-- YAML
18701888added: v0.11.15
18711889changes:
1890+ - version: REPLACEME
1891+ pr-url: https://github.com/nodejs/node/pull/34729
1892+ description: This function is also available as `buf.readUintLE()`.
18721893 - version: v10.0.0
18731894 pr-url: https://github.com/nodejs/node/pull/18395
18741895 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2651,6 +2672,9 @@ console.log(buf);
26512672<!-- YAML
26522673added: v0.5.0
26532674changes:
2675+ - version: REPLACEME
2676+ pr-url: https://github.com/nodejs/node/pull/34729
2677+ description: This function is also available as `buf.writeUint8()`.
26542678 - version: v10.0.0
26552679 pr-url: https://github.com/nodejs/node/pull/18395
26562680 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2682,6 +2706,9 @@ console.log(buf);
26822706<!-- YAML
26832707added: v0.5.5
26842708changes:
2709+ - version: REPLACEME
2710+ pr-url: https://github.com/nodejs/node/pull/34729
2711+ description: This function is also available as `buf.writeUint16BE()`.
26852712 - version: v10.0.0
26862713 pr-url: https://github.com/nodejs/node/pull/18395
26872714 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2711,6 +2738,9 @@ console.log(buf);
27112738<!-- YAML
27122739added: v0.5.5
27132740changes:
2741+ - version: REPLACEME
2742+ pr-url: https://github.com/nodejs/node/pull/34729
2743+ description: This function is also available as `buf.writeUint16LE()`.
27142744 - version: v10.0.0
27152745 pr-url: https://github.com/nodejs/node/pull/18395
27162746 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2740,6 +2770,9 @@ console.log(buf);
27402770<!-- YAML
27412771added: v0.5.5
27422772changes:
2773+ - version: REPLACEME
2774+ pr-url: https://github.com/nodejs/node/pull/34729
2775+ description: This function is also available as `buf.writeUint32BE()`.
27432776 - version: v10.0.0
27442777 pr-url: https://github.com/nodejs/node/pull/18395
27452778 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2768,6 +2801,9 @@ console.log(buf);
27682801<!-- YAML
27692802added: v0.5.5
27702803changes:
2804+ - version: REPLACEME
2805+ pr-url: https://github.com/nodejs/node/pull/34729
2806+ description: This function is also available as `buf.writeUint32LE()`.
27712807 - version: v10.0.0
27722808 pr-url: https://github.com/nodejs/node/pull/18395
27732809 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2796,6 +2832,9 @@ console.log(buf);
27962832<!-- YAML
27972833added: v0.5.5
27982834changes:
2835+ - version: REPLACEME
2836+ pr-url: https://github.com/nodejs/node/pull/34729
2837+ description: This function is also available as `buf.writeUintBE()`.
27992838 - version: v10.0.0
28002839 pr-url: https://github.com/nodejs/node/pull/18395
28012840 description: Removed `noAssert` and no implicit coercion of the offset
@@ -2826,6 +2865,9 @@ console.log(buf);
28262865<!-- YAML
28272866added: v0.5.5
28282867changes:
2868+ - version: REPLACEME
2869+ pr-url: https://github.com/nodejs/node/pull/34729
2870+ description: This function is also available as `buf.writeUintLE()`.
28292871 - version: v10.0.0
28302872 pr-url: https://github.com/nodejs/node/pull/18395
28312873 description: Removed `noAssert` and no implicit coercion of the offset
0 commit comments