Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 14 lines 287 B view raw
1const escapeHtml = (str?: string | null): string => { 2 if (str == null) { 3 return ""; 4 } 5 6 return String(str) 7 .replace(/&/g, "&amp;") 8 .replace(/</g, "&lt;") 9 .replace(/>/g, "&gt;") 10 .replace(/"/g, "&quot;") 11 .replace(/'/g, "&#39;"); 12}; 13 14export default escapeHtml;