📄 _escapeMap.js
/home/palash/git/site/node_modules/underscore/amd/_escapeMap.js
Language: js • Lines: 15
define(function () {

  // Internal list of HTML entities for escaping.
  var escapeMap = {
    '&': '&',
    '<': '&lt;',
    '>': '&gt;',
    '"': '&quot;',
    "'": '&#x27;',
    '`': '&#x60;'
  };

  return escapeMap;

});