Converter ieee754 em decimal no nó

Eu tenho um buffer no nó<Buffer 42 d9 00 00> que deve representar o decimal 108.5. Estou usando este módulo para tentar decodificar o buffer:https://github.com/feross/ieee754.

ieee754.read = function (buffer, offset, isLE, mLen, nBytes)

Os argumentos significam o seguinte:

buffer = the buffer
offset = offset into the buffer
value = value to set (only for write)
isLe = is little endian?
mLen = mantissa length
nBytes = number of bytes

Eu tento ler o valor:ieee754.read(buffer, 0, false, 5832704, 4) mas não estou obtendo o resultado esperado. Acho que estou chamando a função corretamente, embora não tenha certeza sobre omLen argumento.

questionAnswers(1)

yourAnswerToTheQuestion