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

13 lines
216 B
TypeScript
Raw Normal View History

2023-01-24 14:51:59 +00:00
export default function contains(root: Node | null | undefined, n?: Node) {
2020-10-07 14:49:01 +00:00
if (!root) {
return false;
}
2023-01-24 14:51:59 +00:00
// Use native if support
if (root.contains) {
return root.contains(n);
}
return false;
2020-10-07 14:49:01 +00:00
}