(filePath: string)
| 41 | } |
| 42 | |
| 43 | export async function readFileIfExists(filePath: string): Promise<string | null> { |
| 44 | try { |
| 45 | return await readFile(filePath, 'utf8'); |
| 46 | } catch { |
| 47 | return null; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | export interface PatternInfo { |
| 52 | id: string; |
no outgoing calls
no test coverage detected