- Version: v9.4.0
- Platform: Darwin
- Subsystem: Buffer
It looks like #17775 might have seriously broken Buffer.prototype.readDoubleLE.
On v9.3.0:
Buffer.from([0xeb, 0x97, 0x3a, 0x98, 0x20, 0xdb, 0xc2, 0x40]).readDoubleLE();
// => 9654.254645656756
On v9.4.0:
Buffer.from([0xeb, 0x97, 0x3a, 0x98, 0x20, 0xdb, 0xc2, 0x40]).readDoubleLE();
// => -5.828774743119337e-192
It looks like #17775 might have seriously broken
Buffer.prototype.readDoubleLE.On v9.3.0:
On v9.4.0: