1
0
mirror of https://github.com/SomboChea/ui synced 2024-09-30 13:27:48 +07:00
verdaccio-ui/src/webui/utils/file-size.js
2019-04-04 21:23:40 +02:00

6 lines
202 B
JavaScript

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');
};