(input: string)
| 110 | } |
| 111 | |
| 112 | function escapeRegex(input: string): string { |
| 113 | return input.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 114 | } |
| 115 | |
| 116 | function getKeywordCoverage(queryTerms: Set<string>, input: string): number { |
| 117 | if (queryTerms.size === 0) return 0; |
no outgoing calls
no test coverage detected