setup-maven/node_modules/underscore/modules/_escapeMap.js

10 lines
164 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
// Internal list of HTML entities for escaping.
export default {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#x27;',
'`': '&#x60;'
};