(reader: BinaryReader)
| 17 | * @return The UTF-8 string read from the binary data. |
| 18 | */ |
| 19 | export function readString(reader: BinaryReader): string { |
| 20 | return decoder.decode(readRawVector(reader)); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Reads a byte from the BinaryReader and looks up its corresponding value in the provided map. |
no test coverage detected