setup-maven-cached/node_modules/underscore/amd/_escapeMap.js

16 lines
231 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
define(function () {
// Internal list of HTML entities for escaping.
var escapeMap = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#x27;',
'`': '&#x60;'
};
return escapeMap;
});