(readable: IReadable)
| 22 | } |
| 23 | |
| 24 | public static readFloat64BE(readable: IReadable): number { |
| 25 | const bits = new Uint8Array(8); |
| 26 | readable.read(bits, 0, bits.length); |
| 27 | bits.reverse(); |
| 28 | return TypeConversions.bytesToFloat64LE(bits); |
| 29 | } |
| 30 | |
| 31 | public static readInt32LE(input: IReadable): number { |
| 32 | const ch1: number = input.readByte(); |
no test coverage detected