(value, offset = 0)
| 634 | } |
| 635 | |
| 636 | function writeBigInt64LE(value, offset = 0) { |
| 637 | return writeBigU_Int64LE( |
| 638 | this, value, offset, -0x8000000000000000n, 0x7fffffffffffffffn); |
| 639 | } |
| 640 | |
| 641 | function writeBigInt64BE(value, offset = 0) { |
| 642 | return writeBigU_Int64BE( |
nothing calls this directly
no test coverage detected