(text: string)
| 656 | } |
| 657 | |
| 658 | private normalizeSearchTerm(text: string): string { |
| 659 | return text.toLowerCase().replace(/[-_\s\.\|\\\/#]+/g, ' ').replace(/\s+/g, ' ').trim(); |
| 660 | } |
| 661 | |
| 662 | private fuzzyMatch(text: string, query: string): boolean { |
| 663 | if (text.includes(query)) return true; |
no outgoing calls
no test coverage detected