(text: string)
| 29 | } |
| 30 | |
| 31 | function collapseWs(text: string): string { |
| 32 | return text.replace(/\s+/g, ' ').trim(); |
| 33 | } |
| 34 | |
| 35 | // --- Per-file memos. Extraction is file-sequential within a worker, so a |
| 36 | // single-entry memo keyed by filePath is safe (and resets naturally). --- |
no outgoing calls
no test coverage detected