You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 regels
179 B

  1. export default function contains(root, n) {
  2. var node = n;
  3. while (node) {
  4. if (node === root) {
  5. return true;
  6. }
  7. node = node.parentNode;
  8. }
  9. return false;
  10. }