(value, offset = 0)
| 708 | } |
| 709 | |
| 710 | function writeUInt32LE(value, offset = 0) { |
| 711 | return writeU_Int32LE(this, value, offset, 0, 0xffffffff); |
| 712 | } |
| 713 | |
| 714 | function writeU_Int24LE(buf, value, offset, min, max) { |
| 715 | value = +value; |
nothing calls this directly
no test coverage detected