Files
2024-12-05 09:33:18 +08:00

11 lines
156 B
JavaScript

var staticEscapeMap = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#x27;',
'`': '&#x60;'
}
module.exports = staticEscapeMap