(exps, h)
| 59 | return Number(new DataView(b.buffer, b.byteOffset, 16).getBigInt64(0, true)); |
| 60 | }; |
| 61 | const decodeBool = (exps, h) => decodeBytes(exps, h, TAG_BOOL)[0] !== 0; |
| 62 | const decodeFloat = (exps, h) => { |
| 63 | const b = decodeBytes(exps, h, TAG_FLOAT); |
| 64 | return new DataView(b.buffer, b.byteOffset, 8).getFloat64(0, true); |