mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
|
// eslint-disable-next-line import/prefer-default-export
|
||
|
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]}`;
|
||
|
};
|