staticEscapeMap.js 156 B

12345678910
  1. var staticEscapeMap = {
  2. '&': '&',
  3. '<': '&lt;',
  4. '>': '&gt;',
  5. '"': '&quot;',
  6. "'": '&#x27;',
  7. '`': '&#x60;'
  8. }
  9. module.exports = staticEscapeMap