UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

10 lines 181 B
export default function contains(root, n) { if (!root) { return false; } // Use native if support if (root.contains) { return root.contains(n); } return false; }