UNPKG

@testing-library/user-event

Version:
13 lines (11 loc) 287 B
function isDescendantOrSelf(potentialDescendant, potentialAncestor) { let el = potentialDescendant; do { if (el === potentialAncestor) { return true; } el = el.parentElement; }while (el) return false; } export { isDescendantOrSelf };