(buf, value, offset, ext, max, min)
| 4081 | } |
| 4082 | |
| 4083 | function checkIEEE754 (buf, value, offset, ext, max, min) { |
| 4084 | if (offset + ext > buf.length) throw new RangeError('Index out of range') |
| 4085 | if (offset < 0) throw new RangeError('Index out of range') |
| 4086 | } |
| 4087 | |
| 4088 | function writeFloat (buf, value, offset, littleEndian, noAssert) { |
| 4089 | value = +value |
no outgoing calls
no test coverage detected
searching dependent graphs…