(buf, value, offset, littleEndian, noAssert)
| 79867 | } |
| 79868 | |
| 79869 | function writeFloat (buf, value, offset, littleEndian, noAssert) { |
| 79870 | if (!noAssert) { |
| 79871 | checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38) |
| 79872 | } |
| 79873 | ieee754.write(buf, value, offset, littleEndian, 23, 4) |
| 79874 | return offset + 4 |
| 79875 | } |
| 79876 | |
| 79877 | Buffer.prototype.writeFloatLE = function writeFloatLE (value, offset, noAssert) { |
| 79878 | return writeFloat(this, value, offset, true, noAssert) |
no test coverage detected