(bytes)
| 612 | } |
| 613 | |
| 614 | function formatFileSize(bytes) { |
| 615 | if (bytes < 1024) return bytes + ' B'; |
| 616 | if (bytes < 1024 * 1024) return Math.round(bytes / 1024) + ' KB'; |
| 617 | return Math.round(bytes / (1024 * 1024)) + ' MB'; |
| 618 | } |
| 619 | |
| 620 | function formatCooldownTime(remainingSeconds) { |
| 621 | const hours = Math.floor(remainingSeconds / 3600); |