(input: IReadable)
| 65 | } |
| 66 | |
| 67 | public static readInt16LE(input: IReadable): number { |
| 68 | const ch1: number = input.readByte(); |
| 69 | const ch2: number = input.readByte(); |
| 70 | return TypeConversions.int32ToInt16((ch2 << 8) | ch1); |
| 71 | } |
| 72 | |
| 73 | public static readUInt32BE(input: IReadable): number { |
| 74 | const ch1: number = input.readByte(); |
no test coverage detected