15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
export const PrettyBytes = (bytes: number) => {
|
|
const sizes = ["bytes", "KB", "MB", "GB", "TB"];
|
|
if (bytes == 0) {
|
|
return "0 b";
|
|
}
|
|
|
|
const i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)).toString());
|
|
|
|
if (i == 0) {
|
|
return bytes + " " + sizes[i];
|
|
}
|
|
|
|
return (bytes / Math.pow(1024, i)).toFixed(1) + " " + sizes[i];
|
|
};
|