(message = '', show = false)
| 325 | } |
| 326 | |
| 327 | function setResultStatus(message = '', show = false) { |
| 328 | if (!resultStatus) return; |
| 329 | resultStatus.hidden = !show; |
| 330 | if (resultStatusText) resultStatusText.textContent = message; |
| 331 | } |
| 332 | |
| 333 | function renderSection(id, options = {}) { |
| 334 | const section = sections.find((candidate) => candidate.id === id) || sections[0]; |
no outgoing calls
no test coverage detected