refactoring code

This commit is contained in:
Abhinav Adduri
2017-06-01 13:14:14 -07:00
committed by Danny Coates
parent e3611ded17
commit c539ed6282
5 changed files with 225 additions and 95 deletions

10
public/file.js Normal file
View File

@@ -0,0 +1,10 @@
function ProgressEmitter(name, uuid, type) {
this.name = name;
this.uuid = uuid;
this.type = type;
this.link = null;
this.emit = () => {
};
}