Skip to content

Instantly share code, notes, and snippets.

@Otto-Vector
Last active January 28, 2022 23:12
Show Gist options
  • Save Otto-Vector/fe63d25dfe993810b48e5615dee8a5b0 to your computer and use it in GitHub Desktop.
Save Otto-Vector/fe63d25dfe993810b48e5615dee8a5b0 to your computer and use it in GitHub Desktop.
removeAllHTMLTags
const removeAllHTMLTags = (text) =>
text.replace(/<.+?>/g, '').replace(/&nbsp;/ig, '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment