(value: string)
| 1293 | } |
| 1294 | |
| 1295 | function collapseRenderedWhitespace(value: string): string { |
| 1296 | return value.replace(/[\t\n\f\r ]+/g, " "); |
| 1297 | } |
| 1298 | |
| 1299 | function isCollapsibleWhitespaceChar(char: string): boolean { |
| 1300 | return char === " " || char === "\n" || char === "\r" || char === "\t" || char === "\f"; |
no outgoing calls
no test coverage detected