(channel, value)
| 143 | this.enqueueTxRaw(channel, 'I', bytes); |
| 144 | } |
| 145 | enqueueFloat(channel, value) { |
| 146 | let bytes = new Uint8Array(4); |
| 147 | (new DataView(bytes.buffer)).setFloat32(0, value, true); |
| 148 | this.enqueueTxRaw(channel, 'f', bytes); |
| 149 | } |
| 150 | enqueueDouble(channel, value) { |
| 151 | let bytes = new Uint8Array(8); |
| 152 | (new DataView(bytes.buffer)).setFloat64(0, value, true); |
nothing calls this directly
no test coverage detected