UNPKG

166 BJavaScriptView Raw
1var staticEscapeMap = {
2 '&': '&',
3 '<': '&lt;',
4 '>': '&gt;',
5 '"': '&quot;',
6 "'": '&#x27;',
7 '`': '&#x60;'
8}
9
10module.exports = staticEscapeMap