mirror of
https://github.com/vercel/commerce.git
synced 2025-06-09 09:36:58 +00:00
6 lines
150 B
JavaScript
6 lines
150 B
JavaScript
import isInDOM from './is-in-dom';
|
|
|
|
export default function hasParent(element, root) {
|
|
return root && root.contains(element) && isInDOM(element);
|
|
}
|