(value, offset = 0)
| 639 | } |
| 640 | |
| 641 | function writeBigInt64BE(value, offset = 0) { |
| 642 | return writeBigU_Int64BE( |
| 643 | this, value, offset, -0x8000000000000000n, 0x7fffffffffffffffn); |
| 644 | } |
| 645 | |
| 646 | function writeUIntLE(value, offset, byteLength) { |
| 647 | if (byteLength === 6) |
nothing calls this directly
no test coverage detected
searching dependent graphs…