📄 _escapeMap.js
/home/palash/git/site/node_modules/underscore/modules/_escapeMap.js
Language: js • Lines: 9
// Internal list of HTML entities for escaping.
export default {
  '&': '&',
  '<': '&lt;',
  '>': '&gt;',
  '"': '&quot;',
  "'": '&#x27;',
  '`': '&#x60;'
};