import htmlToText from 'html-to-text' import matchWords from 'match-words' export default function htmlWordCount (html) { let text = htmlToText.fromString(html, { wordwrap: false, ignoreImage: true, ignoreHref: true }) let count = 0 try { count = matchWords(text).length } catch (err) {} return count }