(value, offset = 0)
| 897 | } |
| 898 | |
| 899 | function writeInt16BE(value, offset = 0) { |
| 900 | return writeU_Int16BE(this, value, offset, -0x8000, 0x7fff); |
| 901 | } |
| 902 | |
| 903 | // Write floats. |
| 904 | function writeDoubleForwards(val, offset = 0) { |
nothing calls this directly
no test coverage detected