2022-12-14 17:41:48 +01:00
|
|
|
const div = document.createElement('div');
|
2022-12-16 06:27:04 +01:00
|
|
|
export default function htmlContentLength(html) {
|
2022-12-14 17:41:48 +01:00
|
|
|
div.innerHTML = html;
|
|
|
|
return div.innerText.length;
|
2022-12-16 06:27:04 +01:00
|
|
|
}
|