chat-ui-custom / src /lib /utils /deepestChild.ts
that1cooldude
Initial chat-ui deployment without binary files
973a4e3
Raw
History Blame Contribute Delete
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;
}