value{bigint} 要写入buf的数值。offset{integer} 开始写入之前要跳过的字节数。必须满足:0 <= offset <= buf.length - 8。默认值:0。- 返回: {integer}
offset加上已写入的字节数。
将 value 作为小端序写入到 buf 中指定的 offset 位置。
value 会被解析并写入为二进制补码的有符号整数。
const buf = Buffer.allocUnsafe(8);buf.writeBigInt64LE(0x0102030405060708n, 0);console.log(buf);// 打印: <Buffer 08 07 06 05 04 03 02 01>
