MCPcopy Create free account
hub / github.com/crisxuan/bestJavaer / escapeXml

Function escapeXml

assets/article-cards.js:1089–1099  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

1087 }
1088
1089 function escapeXml(text) {
1090 return String(text).replace(/[&<>"']/g, function (char) {
1091 return {
1092 '&': '&amp;',
1093 '<': '&lt;',
1094 '>': '&gt;',
1095 '"': '&quot;',
1096 "'": '&#39;'
1097 }[char];
1098 });
1099 }
1100}());

Callers 1

createGeneratedCoverFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected