Flatten styled spans to their visible text content.
(spans: RenderSpan[])
| 441 | |
| 442 | /** Flatten styled spans to their visible text content. */ |
| 443 | function spansText(spans: RenderSpan[]) { |
| 444 | return sanitizeTerminalSpans(spans) |
| 445 | .map((span) => span.text) |
| 446 | .join(""); |
| 447 | } |
| 448 | |
| 449 | /** Return one cell's code text without rail, gutter, sign, or line-number decorations. */ |
| 450 | function cellCodeText(spans: RenderSpan[], horizontalOffset = 0) { |
no test coverage detected