Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created March 2, 2022 07:12
Show Gist options
  • Save andreasvirkus/09729910b69aeb9d11df3bdf7809e961 to your computer and use it in GitHub Desktop.
Save andreasvirkus/09729910b69aeb9d11df3bdf7809e961 to your computer and use it in GitHub Desktop.

Revisions

  1. andreasvirkus created this gist Mar 2, 2022.
    4 changes: 4 additions & 0 deletions strip.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    export const strip = (html: string) => {
    const doc = new DOMParser().parseFromString(html, 'text/html')
    return (doc.body.textContent || '').trim()
    }