(value, offset = 0)
| 868 | } |
| 869 | |
| 870 | function writeInt16LE(value, offset = 0) { |
| 871 | return writeU_Int16LE(this, value, offset, -0x8000, 0x7fff); |
| 872 | } |
| 873 | |
| 874 | function writeInt8(value, offset = 0) { |
| 875 | return writeU_Int8(this, value, offset, -0x80, 0x7f); |
nothing calls this directly
no test coverage detected
searching dependent graphs…