()
| 21 | * Clear the evaluation table. |
| 22 | */ |
| 23 | export function clearEvaluateTable() { |
| 24 | const tableBody = document.getElementById('evaluate-tbody'); |
| 25 | while (tableBody.children.length > 1) { |
| 26 | tableBody.removeChild(tableBody.children[1]); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Get manually input Iris data from the input boxes. |
nothing calls this directly
no outgoing calls
no test coverage detected