(value, offset = 0)
| 893 | } |
| 894 | |
| 895 | function writeInt32BE(value, offset = 0) { |
| 896 | return writeU_Int32BE(this, value, offset, -0x80000000, 0x7fffffff); |
| 897 | } |
| 898 | |
| 899 | function writeInt16BE(value, offset = 0) { |
| 900 | return writeU_Int16BE(this, value, offset, -0x8000, 0x7fff); |
nothing calls this directly
no test coverage detected