(value, offset = 0)
| 864 | } |
| 865 | |
| 866 | function writeInt32LE(value, offset = 0) { |
| 867 | return writeU_Int32LE(this, value, offset, -0x80000000, 0x7fffffff); |
| 868 | } |
| 869 | |
| 870 | function writeInt16LE(value, offset = 0) { |
| 871 | return writeU_Int16LE(this, value, offset, -0x8000, 0x7fff); |
nothing calls this directly
no test coverage detected