mirror of
https://github.com/SomboChea/ui
synced 2024-11-15 10:44:28 +07:00
4 lines
230 B
TypeScript
4 lines
230 B
TypeScript
|
export default function fileSizeSI(a?: any, b?: any, c?: any, d?: any, e?: any) {
|
||
|
return ((b = Math), (c = b.log), (d = 1e3), (e = (c(a) / c(d)) | 0), a / b.pow(d, e)).toFixed(2) + ' ' + (e ? 'kMGTPEZY'[--e] + 'B' : 'Bytes');
|
||
|
}
|