(path: string)
| 38 | return store.has(toUnixPath(path)); |
| 39 | }, |
| 40 | async mkdir(path: string): Promise<undefined> { |
| 41 | dirs.add(toUnixPath(path)); |
| 42 | }, |
| 43 | async unlink(path: string) { |
| 44 | store.delete(toUnixPath(path)); |
| 45 | unlinked.add(toUnixPath(path)); |
no test coverage detected