Skip to content

Instantly share code, notes, and snippets.

@oscarmarina
Created September 8, 2022 06:53
Show Gist options
  • Select an option

  • Save oscarmarina/e8892ff62b803c7c563c8658eb0b06aa to your computer and use it in GitHub Desktop.

Select an option

Save oscarmarina/e8892ff62b803c7c563c8658eb0b06aa to your computer and use it in GitHub Desktop.
Escapes a string for use in HTML.
export const escapeHTML = (str) =>
str.replace(
/[&<>'"]/g,
(character) =>
({
'&': '&amp;',
'<': '&lt;',
'>': '&gt;',
"'": '&#39;',
'"': '&quot;',
}[character] || character)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment