(filename: string)
| 2 | import { openLazyFile } from '@remix-run/fs' |
| 3 | |
| 4 | export async function parse(filename: string): Promise<number> { |
| 5 | let stream = openLazyFile(filename).stream().pipeThrough(new DecompressionStream('gzip')) |
| 6 | |
| 7 | let start = performance.now() |
| 8 | |
| 9 | await parseTar(stream, (_entry) => { |
| 10 | // Do nothing |
| 11 | }) |
| 12 | |
| 13 | return performance.now() - start |
| 14 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…