Skip to content

Instantly share code, notes, and snippets.

@iiidefix
Created March 28, 2016 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiidefix/98512ad60b5a62580127 to your computer and use it in GitHub Desktop.
Save iiidefix/98512ad60b5a62580127 to your computer and use it in GitHub Desktop.
String.prototype.escapeHTML = function() {
var map = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;'
};
return this.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