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

12 lines
194 B
JavaScript
Raw Normal View History

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