(value, offset = 0)
| 604 | } |
| 605 | |
| 606 | function writeBigUInt64LE(value, offset = 0) { |
| 607 | return writeBigU_Int64LE(this, value, offset, 0n, 0xffffffffffffffffn); |
| 608 | } |
| 609 | |
| 610 | function writeBigU_Int64BE(buf, value, offset, min, max) { |
| 611 | checkInt(value, min, max, buf, offset, 7); |
nothing calls this directly
no test coverage detected
searching dependent graphs…