MCPcopy Index your code
hub / github.com/nodejs/node / writeInt16LE

Function writeInt16LE

lib/internal/buffer.js:870–872  ·  view source on GitHub ↗
(value, offset = 0)

Source from the content-addressed store, hash-verified

868}
869
870function writeInt16LE(value, offset = 0) {
871 return writeU_Int16LE(this, value, offset, -0x8000, 0x7fff);
872}
873
874function writeInt8(value, offset = 0) {
875 return writeU_Int8(this, value, offset, -0x80, 0x7f);

Callers

nothing calls this directly

Calls 1

writeU_Int16LEFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…