buf.readDoubleLE(offset[, noAssert])
offset <Number> 0 <= offset <= buf.length - 8
noAssert <Boolean> Default: false Return: <Number>
Reads a 64-bit double from the Buffer at the specified offset with specified endian format (readDoubleBE() returns big endian, readDoubleLE() returns little endian).
Setting noAssert to true skips validation of the offset. This allows the offset to be beyond the end of the Buffer.
const buf = Buffer.from([1,2,3,4,5,6,7,8]);
buf.re