(html: string)
| 263 | |
| 264 | /** Strip streaming caret marker from HTML */ |
| 265 | export function stripCaret(html: string): string { |
| 266 | return html.replace(CARET_RE, "").trimEnd(); |
| 267 | } |
| 268 | |
| 269 | function extractAllCompleteRows(html: string): string[] { |
| 270 | const rows: string[] = []; |
no outgoing calls
no test coverage detected