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

Function writeU_Int24LE

lib/internal/buffer.js:714–724  ·  view source on GitHub ↗
(buf, value, offset, min, max)

Source from the content-addressed store, hash-verified

712}
713
714function writeU_Int24LE(buf, value, offset, min, max) {
715 value = +value;
716 checkInt(value, min, max, buf, offset, 2);
717
718 buf[offset++] = value;
719 value = value >>> 8;
720 buf[offset++] = value;
721 value = value >>> 8;
722 buf[offset++] = value;
723 return offset;
724}
725
726function writeU_Int16LE(buf, value, offset, min, max) {
727 value = +value;

Callers 2

writeUIntLEFunction · 0.85
writeIntLEFunction · 0.85

Calls 1

checkIntFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…