(str)
| 50 | * @returns {string} Cleaned string |
| 51 | */ |
| 52 | const stripMultispaces = (str) => { |
| 53 | return str.replace(WS_REGEXP, ' ').trim() |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Detect HTML character encoding from meta tags. |
no outgoing calls
no test coverage detected
searching dependent graphs…