Fix ESLint issues
This commit is contained in:
12
app/utils/formatSize.ts
Normal file
12
app/utils/formatSize.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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]}`;
|
||||
}
|
||||
Reference in New Issue
Block a user