blob: 859b0b8af817f142a890cda75ec9227a3db2cd55 [file] [log] [blame]
var bytes = [0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff]; // big-endian
bytes.reverse(); // if testing on little-endian
var result = new Float64Array(new Uint8Array(bytes).buffer)[0];
// Check that this doesn't crash
isNaN(result + 0);