ship-gis/node_modules/underscore/modules/_escapeMap.js

10 lines
164 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
// Internal list of HTML entities for escaping.
export default {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#x27;',
'`': '&#x60;'
};