ant-design-vue/components/vc-util/Dom/contains.ts

8 lines
157 B
TypeScript

export default function contains(root: HTMLElement | null | undefined, n?: HTMLElement) {
if (!root) {
return false;
}
return root.contains(n);
}