| 1 | import fs from 'fs'; |
| 2 | |
| 3 | interface ValidationResult { |
| 4 | file: string; |
| 5 | invalidUrls: Array<{ |
| 6 | url: string; |
| 7 | line: number; |
| 8 | reason: string; |
| 9 | }>; |
| 10 | } |
| 11 | |
| 12 | async function validateUrl(url: string): Promise<boolean> { |
| 13 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…