buf.writeInt16LE(value[, offset])
value<integer> 要写入buf的数字。offset<integer> 写入前要跳过的字节数。必须满足0 <= offset <= buf.length - 2。默认值:0。- 返回:<integer>
offset加上写入的字节数。
将 value 以小端格式写入指定 offset 的 buf。value 必须是有效的有符号 16 位整数。当 value 不是有符号 16 位整数时,行为是未定义的。
【Writes value to buf at the specified offset as little-endian. The value
must be a valid signed 16-bit integer. Behavior is undefined when value is
anything other than a signed 16-bit integer.】
value 被解释并写入为二进制补码有符号整数。
【The value is interpreted and written as a two's complement signed integer.】
import { Buffer } from 'node:buffer';
const buf = Buffer.allocUnsafe(2);
buf.writeInt16LE(0x0304, 0);
console.log(buf);
// Prints: <Buffer 04 03>const { Buffer } = require('node:buffer');
const buf = Buffer.allocUnsafe(2);
buf.writeInt16LE(0x0304, 0);
console.log(buf);
// Prints: <Buffer 04 03>