(input: IReadable)
| 37 | } |
| 38 | |
| 39 | public static readInt64LE(input: IReadable): number { |
| 40 | const b = new Uint8Array(8); |
| 41 | input.read(b, 0, b.length); |
| 42 | return TypeConversions.bytesToInt64LE(b); |
| 43 | } |
| 44 | |
| 45 | public static readUInt32LE(input: IReadable): number { |
| 46 | const ch1: number = input.readByte(); |
no test coverage detected