Function bodies 101 total
escapeHtml function · javascript · L140-L145 (6 LOC)ui/app.js
function escapeHtml(text) {
return text
.replaceAll("&", "&")
.replaceAll("<", "<")
.replaceAll(">", ">");
}‹ prevpage 3 / 3
escapeHtml function · javascript · L140-L145 (6 LOC)function escapeHtml(text) {
return text
.replaceAll("&", "&")
.replaceAll("<", "<")
.replaceAll(">", ">");
}