georgiev955

Untitled

Sep 19th, 2023
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function escapeHtml(value) {
  2. return value
  3. .replace(/&/g, "&")
  4. .replace(/</g, "&lt;")
  5. .replace(/>/g, "&gt;")
  6. .replace(/"/g, "&quot;")
  7. .replace(/'/g, "&#39;");
  8. }
Advertisement
Add Comment
Please, Sign In to add comment