(code: string, message: string)
| 478 | const urlRegex = /^https?:\/\// |
| 479 | |
| 480 | function diagnostic(code: string, message: string): JSDocDiagnostic { |
| 481 | return { code, message } |
| 482 | } |
| 483 | |
| 484 | function normalizePathName(filePath: string): string { |
| 485 | return filePath.replaceAll(path.sep, "/") |
no outgoing calls
no test coverage detected