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