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

Function writeInt32LE

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

Source from the content-addressed store, hash-verified

864}
865
866function writeInt32LE(value, offset = 0) {
867 return writeU_Int32LE(this, value, offset, -0x80000000, 0x7fffffff);
868}
869
870function writeInt16LE(value, offset = 0) {
871 return writeU_Int16LE(this, value, offset, -0x8000, 0x7fff);

Callers

nothing calls this directly

Calls 1

writeU_Int32LEFunction · 0.85

Tested by

no test coverage detected