• value {bigint} 要写入 buf 的数值。
    • offset {integer} 开始写入之前要跳过的字节数。必须满足:0 <= offset <= buf.length - 8默认值: 0
    • 返回: {integer} offset 加上已写入的字节数。

    value 作为小端序写入到 buf 中指定的 offset 位置。

    1. const buf = Buffer.allocUnsafe(8);
    2. buf.writeBigUInt64LE(0xdecafafecacefaden, 0);
    3. console.log(buf);
    4. // 打印: <Buffer de fa ce ca fe fa ca de>