(text: string)
| 67 | let cachedIndex: IdentifierIndex | null = null; |
| 68 | |
| 69 | function hashContent(text: string): string { |
| 70 | let h = 0; |
| 71 | for (let i = 0; i < text.length; i++) h = ((h << 5) - h + text.charCodeAt(i)) | 0; |
| 72 | return h.toString(36); |
| 73 | } |
| 74 | |
| 75 | function splitTerms(text: string): string[] { |
| 76 | return text |
no outgoing calls
no test coverage detected