| 1 | import { zip, type AsyncZippable } from "fflate"; |
| 2 | |
| 3 | export interface ScanItem { |
| 4 | path: string; |
| 5 | file?: File; |
| 6 | isDir: boolean; |
| 7 | } |
| 8 | |
| 9 | export async function scanDirectory(entry: FileSystemEntry, path = ""): Promise<ScanItem[]> { |
| 10 | const items: ScanItem[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected