Advertisement
Adrian_Apostolov

Untitled

Jan 10th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function escapeHtml(unsafe) {
  2.     return unsafe
  3.          .replace(/&/g, "&")
  4.          .replace(/</g, "&lt;")
  5.          .replace(/>/g, "&gt;")
  6.          .replace(/"/g, "&quot;")
  7.          .replace(/'/g, "&#039;");
  8.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement