Skip to content

Instantly share code, notes, and snippets.

@nikola-wd
Created October 1, 2019 00:43
Show Gist options
  • Save nikola-wd/21017d619753d1b9c6297567dedb6f98 to your computer and use it in GitHub Desktop.
Save nikola-wd/21017d619753d1b9c6297567dedb6f98 to your computer and use it in GitHub Desktop.
[stripHtmlTags] Helper FN that strips html tags #javascript #html #helper
export function removeHTMLTags (str) {
return str.replace(/<[^>]*>?/gm, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment