(kinds?: string[])
| 133 | } |
| 134 | |
| 135 | function normalizeKinds(kinds?: string[]): Set<string> | null { |
| 136 | if (!kinds || kinds.length === 0) return null; |
| 137 | const normalized = kinds.map((k) => k.trim().toLowerCase()).filter(Boolean); |
| 138 | return normalized.length > 0 ? new Set(normalized) : null; |
| 139 | } |
| 140 | |
| 141 | function normalizeRelativePath(path: string): string { |
| 142 | return path.replace(/\\/g, "/"); |
no outgoing calls
no test coverage detected