* Normalize whitespace in text (from stringUtils)
(text)
| 166 | * Normalize whitespace in text (from stringUtils) |
| 167 | */ |
| 168 | function normalizeWhiteSpace(text) { |
| 169 | return text.replace(/\s+/g, ' ').trim(); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Get element text content (from selectorUtils.ts lines 65-99) |
no outgoing calls
no test coverage detected