UNPKG

botframework-webchat-component

Version:
13 lines (11 loc) 274 B
export default function findAncestor( node: HTMLElement, predicate: (ancestor: HTMLElement) => boolean ): HTMLElement | undefined { let ancestor = node; while ((ancestor = ancestor.parentElement)) { if (predicate(ancestor)) { return ancestor; } } }