mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
export const KB = 1024;
|
|
export const MB = KB * KB;
|
|
export const GB = KB * MB;
|
|
|
|
export const bytesToHuman = (bytes: number) => {
|
|
const units = ['Bytes', 'KB', 'MB', 'GB'];
|
|
let unitIndex = 0;
|
|
|
|
while (bytes >= 1024 && unitIndex < units.length - 1) {
|
|
bytes /= 1024;
|
|
unitIndex++;
|
|
}
|
|
|
|
return `${bytes.toFixed(1)} ${units[unitIndex]}`;
|
|
};
|