(value, offset = 0)
| 733 | } |
| 734 | |
| 735 | function writeUInt16LE(value, offset = 0) { |
| 736 | return writeU_Int16LE(this, value, offset, 0, 0xffff); |
| 737 | } |
| 738 | |
| 739 | function writeU_Int8(buf, value, offset, min, max) { |
| 740 | value = +value; |
nothing calls this directly
no test coverage detected