(url: string)
| 75 | } |
| 76 | |
| 77 | function isRelativeUrl(url: string): boolean { |
| 78 | return !isNonRelativeUrl(url) && !isAbsolute(url); |
| 79 | } |
| 80 | |
| 81 | function safeReadFile(filePath: string): string | null { |
| 82 | if (!existsSync(filePath)) return null; |
no test coverage detected