Prettified Code!

This commit is contained in:
zero01101 2024-02-22 04:04:11 +00:00 committed by GitHub Action
parent a7a25e1bee
commit 9040f37849

View file

@ -62,9 +62,12 @@ const _monitorProgress = (bb, oncheck = null) => {
}
const timeSpent = performance.now() - init;
setTimeout(() => {
setTimeout(
() => {
if (running) _checkProgress();
}, Math.max(0, minDelay - timeSpent));
},
Math.max(0, minDelay - timeSpent)
);
};
_checkProgress();