Return 0 if no html
This commit is contained in:
parent
db25770a31
commit
509c1d971e
1 changed files with 1 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
const div = document.createElement('div');
|
const div = document.createElement('div');
|
||||||
export default function htmlContentLength(html) {
|
export default function htmlContentLength(html) {
|
||||||
|
if (!html) return 0;
|
||||||
div.innerHTML = html;
|
div.innerHTML = html;
|
||||||
return div.innerText.length;
|
return div.innerText.length;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue