Spaces:
Running
Running
File size: 209 Bytes
5539271 | 1 2 3 4 5 6 | export function formatSize(bytes: number | null | undefined): string {
if (!bytes) return ''
const mb = bytes / (1024 * 1024)
return mb >= 1 ? `${mb.toFixed(1)} MB` : `${(bytes / 1024).toFixed(0)} KB`
}
|