Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created March 6, 2020 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreasvirkus/a7a4b4434b2c2914601fe116832c5bdf to your computer and use it in GitHub Desktop.
Save andreasvirkus/a7a4b4434b2c2914601fe116832c5bdf to your computer and use it in GitHub Desktop.
export const strip = html => {
const doc = new DOMParser().parseFromString(html, 'text/html')
return (doc.body.textContent || '').trim()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment