(_path: string, cb: (err: Error | null | undefined, absPath: string) => void)
| 352 | function makeFakeSftp(target: string, isDir: boolean): unknown { |
| 353 | return { |
| 354 | realpath(_path: string, cb: (err: Error | null | undefined, absPath: string) => void): void { |
| 355 | cb(null, target); |
| 356 | }, |
| 357 | stat( |
| 358 | _path: string, |
| 359 | cb: (err: Error | null | undefined, stats: Record<string, unknown>) => void, |
no outgoing calls
no test coverage detected