| 3 | import { resolve, sep } from 'path' |
| 4 | |
| 5 | interface FileDescriptor { |
| 6 | mode: string; |
| 7 | content: string; |
| 8 | } |
| 9 | |
| 10 | let files: { [path: string]: FileDescriptor } = {} |
| 11 | const { readFile, exists, readFileSync, existsSync, contains, containsSync } = fs |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…