prince-0203/BouyomiCraft

View on GitHub
src/escapeHtml.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function escapeHtml(content) {
  var escapeMap = {
    '&': '&',
    '\x27': ''',
    '"': '"',
    '<': '&lt;',
    '>': '&gt;'
  };
  return content.replace(/[&"<>]/g, function(match) {
    return escapeMap[match];
  });
};