Blame view

天文台pc/tianwentai-ui/node_modules/dom-helpers/esm/collectSiblings.js 438 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  import matches from './matches';
  export default function collectSiblings(node, refNode, selector) {
    if (refNode === void 0) {
      refNode = null;
    }
  
    if (selector === void 0) {
      selector = null;
    }
  
    var siblings = [];
  
    for (; node; node = node.nextElementSibling) {
      if (node !== refNode) {
        if (selector && matches(node, selector)) {
          break;
        }
  
        siblings.push(node);
      }
    }
  
    return siblings;
  }