1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-30 21:37:48 +07:00
verdaccio-ui/src/webui/utils/file-size.js

6 lines
202 B
JavaScript
Raw Normal View History

2019-03-28 05:39:06 +07:00
export default function fileSizeSI(a, b, c, d, e) {
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');
};