Escape HTML JavaScript

Funkcja do escapowania textu html.

function escapeHtml(text) {
	 const map = {
		  '&': '&',
		  '<': '<',
		  '>': '>',
		  '"': '"',
		  "'": '''
	 };

	 if (typeof text !== 'string') {
		  return text.toString().replace(/[&<>"']/g, function(m) {
				return map[m];
		  });
	 }

	 return text.replace(/[&<>"']/g, function(m) {
		  return map[m];
	 });
}

Dodaj komentarz

Witryna wykorzystuje Akismet, aby ograniczyć spam. Dowiedz się więcej jak przetwarzane są dane komentarzy.