Skip to content

Instantly share code, notes, and snippets.

@erming
Created June 3, 2014 16:52
Show Gist options
  • Save erming/99013bb6dc8a6224f827 to your computer and use it in GitHub Desktop.
Save erming/99013bb6dc8a6224f827 to your computer and use it in GitHub Desktop.
escape.js
function escape(text) {
var e = {
"<": "&lt;",
">": "&gt;"
};
return text.replace(/[<>]/g, function (c) {
return e[c];
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment