Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / min-document / dom-comment.js
1 module.exports = Comment
2
3 function Comment(data, owner) {
4     if (!(this instanceof Comment)) {
5         return new Comment(data, owner)
6     }
7
8     this.data = data
9     this.nodeValue = data
10     this.length = data.length
11     this.ownerDocument = owner || null
12 }
13
14 Comment.prototype.nodeType = 8
15 Comment.prototype.nodeName = "#comment"
16
17 Comment.prototype.toString = function _Comment_toString() {
18     return "[object Comment]"
19 }