Blame view

node_modules/min-document/dom-comment.js 426 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  module.exports = Comment
  
  function Comment(data, owner) {
      if (!(this instanceof Comment)) {
          return new Comment(data, owner)
      }
  
      this.data = data
      this.nodeValue = data
      this.length = data.length
      this.ownerDocument = owner || null
  }
  
  Comment.prototype.nodeType = 8
  Comment.prototype.nodeName = "#comment"
  
  Comment.prototype.toString = function _Comment_toString() {
      return "[object Comment]"
  }