(buf, value, offset, ext, max, min)
| 11182 | } |
| 11183 | |
| 11184 | function checkIEEE754 (buf, value, offset, ext, max, min) { |
| 11185 | if (offset + ext > buf.length) throw new RangeError('Index out of range') |
| 11186 | if (offset < 0) throw new RangeError('Index out of range') |
| 11187 | } |
| 11188 | |
| 11189 | function writeFloat (buf, value, offset, littleEndian, noAssert) { |
| 11190 | if (!noAssert) { |
no outgoing calls
no test coverage detected