Skip to content

Instantly share code, notes, and snippets.

@nordinrahman
Created August 27, 2015 07:56
Show Gist options
  • Save nordinrahman/0eccaec7b5b988e74c5d to your computer and use it in GitHub Desktop.
Save nordinrahman/0eccaec7b5b988e74c5d to your computer and use it in GitHub Desktop.
escapeHtml via JavaScript
// http://stackoverflow.com/a/13371349/29669
var escapeHtml = (function () {
'use strict';
var chr = { '"': '&quot;', '&': '&amp;', '<': '&lt;', '>': '&gt;' };
return function (text) {
return text.replace(/[\"&<>]/g, function (a) { return chr[a]; });
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment