(candidatePath: string)
| 90 | } |
| 91 | |
| 92 | function resolveExistingFile(candidatePath: string): string | null { |
| 93 | try { |
| 94 | return fs.statSync(candidatePath).isFile() ? candidatePath : null; |
| 95 | } catch { |
| 96 | return null; |
| 97 | } |
| 98 | } |
no outgoing calls
no test coverage detected