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

Function escapeHtml

codeclash/viewer/static/js/app.js:679–683  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

677
678// Helper function to escape HTML
679function escapeHtml(text) {
680 const div = document.createElement("div");
681 div.textContent = text;
682 return div.innerHTML;
683}
684
685// Setup button event listeners
686function setupButtonEventListeners() {

Callers 1

loadTrajectoryDiffsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected