(url: string, processLine = false)
| 41 | }; |
| 42 | |
| 43 | export function fetchRemoteTextByLine(url: string, processLine = false): Promise<AsyncIterable<string>> { |
| 44 | return $$fetch(url).then(resp => createReadlineInterfaceFromResponse(resp, processLine)); |
| 45 | } |
| 46 | |
| 47 | export async function readFileIntoProcessedArray(file: string /* | FileHandle */) { |
| 48 | const results = []; |
no test coverage detected