(value: string)
| 699 | } |
| 700 | |
| 701 | function collapseVisibleWhitespace(value: string): string { |
| 702 | return value.replace(/\u00a0/g, " ").replace(/\s+/g, " "); |
| 703 | } |
| 704 | |
| 705 | function getStaticRenderableText(node: any): string | null { |
| 706 | if (!node) return ""; |
no outgoing calls
no test coverage detected