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

module.exports = escapeMap;