method Buffer.writeUIntLE
Usage in Deno
import { type Buffer } from "node:buffer";
Buffer.writeUIntLE(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 an unsigned integer.
This function is also available under the writeUintLE
alias.
import { Buffer } from 'node:buffer'; const buf = Buffer.allocUnsafe(6); buf.writeUIntLE(0x1234567890ab, 0, 6); console.log(buf); // Prints: <Buffer ab 90 78 56 34 12>
number
offset
plus the number of bytes written.