diff --git a/doc/api/buffer.md b/doc/api/buffer.md index c272a63ea53cf2..d54e8e3ab8dacd 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -1416,6 +1416,8 @@ changes: Reads an unsigned, big-endian 64-bit integer from `buf` at the specified `offset`. +This function is also available under the `readBigUint64BE` alias. + ```js const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); @@ -1443,6 +1445,8 @@ changes: Reads an unsigned, little-endian 64-bit integer from `buf` at the specified `offset`. +This function is also available under the `readBigUint64LE` alias. + ```js const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]); @@ -1758,6 +1762,8 @@ changes: Reads an unsigned 8-bit integer from `buf` at the specified `offset`. +This function is also available under the `readUint8` alias. + ```js const buf = Buffer.from([1, -2]); @@ -1789,6 +1795,8 @@ changes: Reads an unsigned, big-endian 16-bit integer from `buf` at the specified `offset`. +This function is also available under the `readUint16BE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56]); @@ -1818,6 +1826,8 @@ changes: Reads an unsigned, little-endian 16-bit integer from `buf` at the specified `offset`. +This function is also available under the `readUint16LE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56]); @@ -1849,6 +1859,8 @@ changes: Reads an unsigned, big-endian 32-bit integer from `buf` at the specified `offset`. +This function is also available under the `readUint32BE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); @@ -1876,6 +1888,8 @@ changes: Reads an unsigned, little-endian 32-bit integer from `buf` at the specified `offset`. +This function is also available under the `readUint32LE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]); @@ -1908,6 +1922,8 @@ Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned big-endian integer supporting up to 48 bits of accuracy. +This function is also available under the `readUintBE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); @@ -1940,6 +1956,8 @@ Reads `byteLength` number of bytes from `buf` at the specified `offset` and interprets the result as an unsigned, little-endian integer supporting up to 48 bits of accuracy. +This function is also available under the `readUintLE` alias. + ```js const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]); @@ -2353,6 +2371,8 @@ changes: Writes `value` to `buf` at the specified `offset` as big-endian. +This function is also available under the `writeBigUint64BE` alias. + ```js const buf = Buffer.allocUnsafe(8); @@ -2389,6 +2409,8 @@ console.log(buf); // Prints: ``` +This function is also available under the `writeBigUint64LE` alias. + ### `buf.writeDoubleBE(value[, offset])`