atmosphere explorer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0f4e0d17bdadbbfff6eb0f5117bb8d695a3843ee 9 lines 310 B view raw
1const formatFileSize = (bytes: number): string => { 2 if (bytes === 0) return "0 B"; 3 const k = 1024; 4 const sizes = ["B", "KiB", "MiB", "GiB"]; 5 const i = Math.floor(Math.log(bytes) / Math.log(k)); 6 return `${(bytes / Math.pow(k, i)).toFixed(i === 0 ? 0 : 1)} ${sizes[i]}`; 7}; 8 9export { formatFileSize };