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

Function writeBigInt64LE

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

Source from the content-addressed store, hash-verified

634}
635
636function writeBigInt64LE(value, offset = 0) {
637 return writeBigU_Int64LE(
638 this, value, offset, -0x8000000000000000n, 0x7fffffffffffffffn);
639}
640
641function writeBigInt64BE(value, offset = 0) {
642 return writeBigU_Int64BE(

Callers

nothing calls this directly

Calls 1

writeBigU_Int64LEFunction · 0.85

Tested by

no test coverage detected