summaryrefslogtreecommitdiff
path: root/public/js/util.js
blob: e69d00212473f28d1427773111c9b1ede868d562 (plain)
1
2
3
4
5
6
7
var LESS_THAN = /</g, GREATER_THAN = />/g, AMPERSAND = /&/g;
function sanitize (s) {
  if (s) {
    return s.replace(LESS_THAN, '&lt;').replace(GREATER_THAN, '&gt;').replace(AMPERSAND, '&amp;');
  }
  return "";
}