1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-10 09:56:58 +00:00
2022-01-07 11:48:45 -05:00

6 lines
148 B
JavaScript

import isInDOM from './is-in-dom'
export default function hasParent(element, root) {
return root && root.contains(element) && isInDOM(element)
}