(target: string)
| 114 | } |
| 115 | |
| 116 | function targetPath(target: string) { |
| 117 | if (target.startsWith("file://")) return fileURLToPath(target) |
| 118 | if (path.isAbsolute(target)) return target |
| 119 | } |
| 120 | |
| 121 | async function resolveDirectoryIndex(dir: string) { |
| 122 | for (const name of INDEX_FILES) { |
no outgoing calls
no test coverage detected