(value: string)
| 34 | export type SymbolReferencesResult = SymbolReferencesSuccess | SymbolReferencesError; |
| 35 | |
| 36 | function escapeRegex(value: string): string { |
| 37 | return value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); |
| 38 | } |
| 39 | |
| 40 | function getUsageFile(rootPath: string, chunk: IndexedChunk): string { |
| 41 | if (typeof chunk.relativePath === 'string' && chunk.relativePath.trim()) { |
no outgoing calls
no test coverage detected