MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / decodeHtmlEntities

Function decodeHtmlEntities

codeclash/viewer/static/js/matrix.js:14–18  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected