(path: string)
| 280 | }, |
| 281 | |
| 282 | existsSync(path: string): boolean { |
| 283 | return existsSync(path); |
| 284 | }, |
| 285 | |
| 286 | stat(path: string): Promise<{ isDirectory(): boolean; mtimeMs: number }> { |
| 287 | return fsPromises.stat(path); |
no outgoing calls
no test coverage detected