(ip)
| 580 | function getConfigDescription(key) { |
| 581 | if (configMetadata[key] && configMetadata[key].description) { |
| 582 | return configMetadata[key].description; |
| 583 | } |
| 584 | return "No additional information available for this setting."; |
| 585 | } |
| 586 | |
| 587 | function escapeHtml(text) { |
| 588 | const div = document.createElement('div'); |
| 589 | div.textContent = text; |
| 590 | return div.innerHTML; |
| 591 | } |
no test coverage detected