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

8 lines
157 B
TypeScript
Raw Normal View History

export default function contains(root: HTMLElement | null | undefined, n?: HTMLElement) {
2020-10-07 14:49:01 +00:00
if (!root) {
return false;
}
return root.contains(n);
}