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

16 lines
231 B
JavaScript
Raw Normal View History

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