readBigUInt64LE
Reads an unsigned, little-endian 64-bit integer from buf
at the specifiedoffset
.
This function is also available under the readBigUint64LE
alias.
import { Buffer } from 'node:buffer';
const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);
console.log(buf.readBigUInt64LE(0));
// Prints: 18446744069414584320n
Content copied to clipboard
Since
v12.0.0, v10.20.0
Parameters
offset=0 Number of bytes to skip before starting to read. Must satisfy: 0 <= offset <= buf.length - 8
.