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

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

    value 会被解析并写入为二进制补码的有符号整数。

    1. const buf = Buffer.allocUnsafe(8);
    2. buf.writeBigInt64LE(0x0102030405060708n, 0);
    3. console.log(buf);
    4. // 打印: <Buffer 08 07 06 05 04 03 02 01>