Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
FallnAI
/
chat
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
faca43f
chat
/
src
/
lib
/
utils
/
deepestChild.ts
lauro1
test
faca43f
almost 2 years ago
raw
Copy download link
history
blame
Safe
216 Bytes
export
function
deepestChild
(
el: HTMLElement
):
HTMLElement
{
if
(el.
lastElementChild
&& el.
lastElementChild
.
nodeType
!==
Node
.
TEXT_NODE
) {
return
deepestChild
(el.
lastElementChild
as
HTMLElement
);
}
return
el;
}