mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-07-26 17:34:38 +02:00
7 lines
274 B
JavaScript
7 lines
274 B
JavaScript
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];
|
|
};
|