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

Function writeInt32BE

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

Source from the content-addressed store, hash-verified

893}
894
895function writeInt32BE(value, offset = 0) {
896 return writeU_Int32BE(this, value, offset, -0x80000000, 0x7fffffff);
897}
898
899function writeInt16BE(value, offset = 0) {
900 return writeU_Int16BE(this, value, offset, -0x8000, 0x7fff);

Callers

nothing calls this directly

Calls 1

writeU_Int32BEFunction · 0.85

Tested by

no test coverage detected