(html: string)
| 283 | |
| 284 | /** Index where the first <table starts, or -1 */ |
| 285 | export function findTableStart(html: string): number { |
| 286 | return html.search(/<table\b/i); |
| 287 | } |
| 288 | |
| 289 | /** Character index in `track` immediately after the first balanced </table>, or -1. */ |
| 290 | export function firstCompleteTableEnd( |
no outgoing calls
no test coverage detected