(path: string)
| 85 | } |
| 86 | |
| 87 | function normalizeRelativePath(path: string): string { |
| 88 | return path.replace(/\\/g, "/"); |
| 89 | } |
| 90 | |
| 91 | async function buildSearchDocumentForFile(rootDir: string, relativePath: string): Promise<SearchDocument | null> { |
| 92 | const normalized = normalizeRelativePath(relativePath); |
no outgoing calls
no test coverage detected