(text: string)
| 221 | function whitespaceNormalizedSpans(content: string, find: string): string[] { |
| 222 | const out: string[] = []; |
| 223 | const normalize = (text: string) => text.replace(/\s+/g, ' ').trim(); |
| 224 | const normalizedFind = normalize(find); |
| 225 | if (normalizedFind === '') return out; |
| 226 | const lines = content.split('\n'); |
no test coverage detected