Pathologic was missing because of a .git folder inside.
[yaffs-website] / node_modules / min-document / event.js
1 module.exports = Event
2
3 function Event(family) {}
4
5 Event.prototype.initEvent = function _Event_initEvent(type, bubbles, cancelable) {
6     this.type = type
7     this.bubbles = bubbles
8     this.cancelable = cancelable
9 }
10
11 Event.prototype.preventDefault = function _Event_preventDefault() {
12     
13 }