(parent, text)
| 163 | }) |
| 164 | |
| 165 | function addEntry(parent, text) { |
| 166 | const tag = parent.parentElement.tagName === 'TBODY' ? 'td' : 'th' |
| 167 | const child = document.createElement(tag) |
| 168 | child.innerHTML = text |
| 169 | parent.appendChild(child) |
| 170 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…