(row: Element)
| 18 | import {table} from './table'; |
| 19 | |
| 20 | function getRowHTML(row: Element) { |
| 21 | return Array.from(row.querySelectorAll('td')).map(r => r.innerHTML); |
| 22 | } |
| 23 | |
| 24 | function getRowText(row: Element) { |
| 25 | return Array.from(row.querySelectorAll('td')).map(r => r.textContent); |
no outgoing calls
no test coverage detected
searching dependent graphs…