Files
mission-control-ui/node_modules/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs
2026-03-27 18:36:05 +00:00

22 lines
513 B
JavaScript

/**
* Recursively traverse up the tree to check whether the provided child node
* is the parent or a descendant of it.
*
* @param parent - Element to find
* @param child - Element to test against parent
*/
const isNodeOrChild = (parent, child) => {
if (!child) {
return false;
}
else if (parent === child) {
return true;
}
else {
return isNodeOrChild(parent, child.parentElement);
}
};
export { isNodeOrChild };
//# sourceMappingURL=is-node-or-child.mjs.map