Advertisement
e55db081d05f58a

encodeHtml

Oct 28th, 2020
4,425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var encodeHtml=function (e) {
  2.   return "string" != typeof e
  3.     ? e
  4.     : e.replace(/"|&|'|<|>|[\x00-\x20]|[\x7F-\xFF]|[\u0100-\u2700]/g, function (e) {
  5.       var t = e.charCodeAt(0),
  6.       o = ["&#"];
  7.       return (t = 32 == t ? 160 : t), o.push(t), o.push(";"), o.join("");
  8.  });
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement