Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.08k
Running
App
Files
Files
Community
604
82fcab7
chat-ui
/
src
/
lib
/
utils
/
deepestChild.ts
coyotte508
HF staff
✨ Remove endoftext (
#70
)
0abf663
unverified
over 1 year ago
raw
Copy download link
history
blame
Safe
167 Bytes
export
function
deepestChild
(
el: HTMLElement
) {
let
newEl = el;
while
(newEl.
hasChildNodes
()) {
newEl = newEl.
lastElementChild
as
HTMLElement
;
}
return
newEl;
}