MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / escapeHtml

Function escapeHtml

static/js/app.js:2210–2215  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

2208
2209// HTML 转义
2210function escapeHtml(text) {
2211 if (!text) return '';
2212 const div = document.createElement('div');
2213 div.textContent = text;
2214 return div.innerHTML;
2215}
2216
2217
2218// ============== Outlook 批量注册功能 ==============

Callers 10

loadServiceSelectFunction · 0.70
loadScheduledJobsFunction · 0.70
renderScheduledJobsFunction · 0.70
formatRecentTaskTimeFunction · 0.70
loadRecentTasksFunction · 0.70
loadRecentAccountsFunction · 0.70
addLogFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected