mirror of
https://silica.codes/BedrockReverse/MCPackDecrypt.git
synced 2025-04-05 13:12:46 +13:00
14 lines
No EOL
316 B
JavaScript
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;
|
|
}
|
|
} |