method Buffer.writeIntLE
Jump to headingBuffer.writeIntLE(value: number,offset: number,byteLength: number,): number
Writes byteLength
bytes of value
to buf
at the specified offset
as little-endian. Supports up to 48 bits of accuracy. Behavior is undefined
when value
is anything other than a signed integer.
import { Buffer } from 'node:buffer';
const buf = Buffer.allocUnsafe(6);
buf.writeIntLE(0x1234567890ab, 0, 6);
console.log(buf);
// Prints: <Buffer ab 90 78 56 34 12>
Parameters Jump to heading
Jump to headingvalue: number
Number to be written to buf
.
Jump to headingoffset: number
Number of bytes to skip before starting to write. Must satisfy 0 <= offset <= buf.length - byteLength
.
Jump to headingbyteLength: number
Number of bytes to write. Must satisfy 0 < byteLength <= 6
.
Return Type Jump to heading
number
offset
plus the number of bytes written.