Skip to content

Instantly share code, notes, and snippets.

@mgrandrath
Created October 5, 2012 07:20
Show Gist options
  • Save mgrandrath/3838530 to your computer and use it in GitHub Desktop.
Save mgrandrath/3838530 to your computer and use it in GitHub Desktop.
escapeHTML (AMD)
define(function() {
var entityMap = {
"&": "&",
"<": "&lt;",
">": "&gt;",
'"': '&quot;',
"'": '&#39;',
"/": '&#x2F;'
};
return function(string) {
return String(string).replace(/[&<>"'\/]/g, function (s) {
return entityMap[s];
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment