Subscribe to the GTHL Development Newsletter
Subscribe to the GTHL Development Newsletter * indicates required Email Address * First Name Last Name function getCountryUnicodeFlag(countryCode) { return countryCode.toUpperCase().replace(/./g, (char) => String.fromCodePoint(char.charCodeAt(0) + 127397)) }; // HTML sanitization function to prevent XSS function sanitizeHtml(str) { if (typeof str !== ‘string’) return ”; return str .replace(/&/g, ‘&’) .replace(//g, ‘>’) .replace(/”/g, ‘”‘) .replace(/’/g, ”’) .replace(/\//g, … Read more
