(value, offset = 0)
| 872 | } |
| 873 | |
| 874 | function writeInt8(value, offset = 0) { |
| 875 | return writeU_Int8(this, value, offset, -0x80, 0x7f); |
| 876 | } |
| 877 | |
| 878 | function writeIntBE(value, offset, byteLength) { |
| 879 | if (byteLength === 6) |
nothing calls this directly
no test coverage detected