buf.writeInt16LE(value, offset[, noAssert])
Writes value
to the Buffer at the specified offset
with specified endian format (writeInt16BE()
writes big endian, writeInt16LE()
writes little endian). The value
should be a valid signed 16-bit integer. Behavior is not defined when value
is anything other than a signed 16-bit integer.
Set noAssert
to true to skip validation of value
and offset
. This means that value
may be too large for the specific function and offset
may be beyond the end of the Buffer leading to the values being silently dropped. This should not be used unless you are certain of correctness.
The value
is interpreted and written as a two's complement signed integer.
const buf = Buffer.allocUnsafe(4); buf.writeInt16BE(0x0102,0); buf.writeInt16LE(0x0304,2); console.log(buf); // Prints: <Buffer 01 02 04 03>
Please login to continue.