()
| 144 | |
| 145 | /** Clears output messages and tables. */ |
| 146 | const resetOutputMessages = () => { |
| 147 | ui.updateRowCountOutput('click "Count rows"'); |
| 148 | ui.updateColumnNamesMessage('click "Get column names"'); |
| 149 | ui.updateColumnNamesOutput([]); |
| 150 | ui.updateSampleRowMessage('select an index and click "Get a sample row"'); |
| 151 | ui.updateSampleRowOutput([]); |
| 152 | }; |
| 153 | |
| 154 | /** Sets up handlers for the user affordences, including all buttons. */ |
| 155 | document.addEventListener('DOMContentLoaded', async () => { |
no outgoing calls
no test coverage detected