getFixed top-level property

Function getFixed
getter/setter pair

Implementation

Function getFixed = (dataView, offset) {
  var decimal = dataView.getInt16(offset);
  var fraction = dataView.getUint16(offset + 2);
  return decimal + fraction / 65535;
};