Spaces:
Running
Running
File size: 291 Bytes
c0a9bce |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export function formatSize(bytes: number): string {
const units = ['B', 'KB', 'MB', 'GB', 'TB'];
let size = bytes;
let unitIndex = 0;
while (size >= 1024 && unitIndex < units.length - 1) {
size /= 1024;
unitIndex++;
}
return `${size.toFixed(1)} ${units[unitIndex]}`;
}
|