(value, offset = 0)
| 818 | } |
| 819 | |
| 820 | function writeUInt32BE(value, offset = 0) { |
| 821 | return writeU_Int32BE(this, value, offset, 0, 0xffffffff); |
| 822 | } |
| 823 | |
| 824 | function writeU_Int24BE(buf, value, offset, min, max) { |
| 825 | value = +value; |
nothing calls this directly
no test coverage detected