(value, offset = 0)
| 751 | } |
| 752 | |
| 753 | function writeUInt8(value, offset = 0) { |
| 754 | return writeU_Int8(this, value, offset, 0, 0xff); |
| 755 | } |
| 756 | |
| 757 | function writeUIntBE(value, offset, byteLength) { |
| 758 | if (byteLength === 6) |
nothing calls this directly
no test coverage detected