7fife-backend/node_modules/underscore/modules/_escapeMap.js

10 lines
164 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
// Internal list of HTML entities for escaping.
export default {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#x27;',
'`': '&#x60;'
};