phanpy/src/utils/html-content-length.js

7 lines
173 B
JavaScript
Raw Normal View History

const div = document.createElement('div');
2022-12-16 08:27:04 +03:00
export default function htmlContentLength(html) {
2022-12-19 12:30:10 +03:00
if (!html) return 0;
div.innerHTML = html;
return div.innerText.length;
2022-12-16 08:27:04 +03:00
}