MCPackDecrypt/progress.js
2023-07-24 00:15:53 +12:00

14 lines
No EOL
316 B
JavaScript

module.exports = class Progress {
_started = false;
constructor() {
}
getPercentage() {
if (!this._started) {
return 0;
}
return Math.round((this.zippedContent.length / this.contentFiles.length ) * 100);
}
isStarted(){
return this._started;
}
}