(input: IReadable, length: number)
| 91 | } |
| 92 | |
| 93 | public static readByteArray(input: IReadable, length: number): Uint8Array { |
| 94 | const v: Uint8Array = new Uint8Array(length); |
| 95 | input.read(v, 0, length); |
| 96 | return v; |
| 97 | } |
| 98 | |
| 99 | public static read8BitChars(input: IReadable, length: number): string { |
| 100 | const b: Uint8Array = new Uint8Array(length); |
no test coverage detected