(section: HTMLTableSectionElement)
| 865 | } |
| 866 | |
| 867 | function removePartialRow(section: HTMLTableSectionElement): void { |
| 868 | section.querySelector("tr[data-sh-partial]")?.remove(); |
| 869 | } |
| 870 | |
| 871 | function stripCompleteRows(tableSection: string): string { |
| 872 | return tableSection.replace(TR_RE, ""); |
no outgoing calls
no test coverage detected