(input: IReadable)
| 59 | } |
| 60 | |
| 61 | public static readUInt16LE(input: IReadable): number { |
| 62 | const ch1: number = input.readByte(); |
| 63 | const ch2: number = input.readByte(); |
| 64 | return TypeConversions.int32ToUint16((ch2 << 8) | ch1); |
| 65 | } |
| 66 | |
| 67 | public static readInt16LE(input: IReadable): number { |
| 68 | const ch1: number = input.readByte(); |
no test coverage detected