summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/bytes-to-size.js
blob: af0268dbd0324f23c78ca9731218f0714717c6c2 (plain)
1
2
3
4
5
6
export default (bytes, digits = 0) => {
	var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
	if (bytes == 0) return '0Byte';
	var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
	return (bytes / Math.pow(1024, i)).toFixed(digits).replace(/\.0+$/, '') + sizes[i];
};