send/public/file.js
2017-06-01 15:27:00 -07:00

10 lines
No EOL
161 B
JavaScript

function ProgressEmitter(name, uuid, type) {
this.name = name;
this.uuid = uuid;
this.type = type;
this.link = null;
this.emit = () => {
};
}