(input: Uint8Array)
| 10 | const utf8Encode = (input: string) => encoder.encode(input); |
| 11 | const decoder = new TextDecoder(); |
| 12 | const utf8Decode = (input: Uint8Array) => decoder.decode(input); |
| 13 | |
| 14 | export interface ITarFileInfo { |
| 15 | name: string; |
no outgoing calls
no test coverage detected