(text)
| 12 | |
| 13 | // Utility function to decode HTML entities |
| 14 | function decodeHtmlEntities(text) { |
| 15 | const textarea = document.createElement("textarea"); |
| 16 | textarea.innerHTML = text; |
| 17 | return textarea.value; |
| 18 | } |
| 19 | |
| 20 | function initializeMatrixAnalysis() { |
| 21 | const matrixDropdown = document.getElementById("matrix-dropdown"); |
nothing calls this directly
no outgoing calls
no test coverage detected