mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 07:06:00 +00:00
7 lines
288 B
JavaScript
7 lines
288 B
JavaScript
export default function formatFileSize(size) {
|
|
if (size > 1000000000) return `${Math.round(size / 10000000000) * 10} GB`;
|
|
if (size > 1000000) return `${Math.round(size / 10000000) * 10} MB`;
|
|
if (size > 1000) return `${Math.round(size / 10000) * 10} KB`;
|
|
return `${size} bytes`;
|
|
}
|