Skip to content

Instantly share code, notes, and snippets.

@andrIvash
Created June 25, 2019 14:45
Show Gist options
  • Save andrIvash/dfb6cad3e93f046c901175e74f65a5e6 to your computer and use it in GitHub Desktop.
Save andrIvash/dfb6cad3e93f046c901175e74f65a5e6 to your computer and use it in GitHub Desktop.
escape Html chars
function escapeHtml(text) {
var map = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return text.replace(/[&<>"']/g, function(m) { return map[m]; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment