Blame view

天文台pc/tianwentai-ui/node_modules/dom-helpers/cjs/clear.js 350 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
  "use strict";
  
  exports.__esModule = true;
  exports.default = clear;
  
  /**
   * Removes all child nodes from a given node.
   * 
   * @param node the node to clear
   */
  function clear(node) {
    if (node) {
      while (node.firstChild) {
        node.removeChild(node.firstChild);
      }
  
      return node;
    }
  
    return null;
  }
  
  module.exports = exports["default"];