mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-16 12:41:57 +01:00
16 lines
225 B
JavaScript
16 lines
225 B
JavaScript
import filesize from 'filesize';
|
|
|
|
function formatBytes(input) {
|
|
const size = Number(input);
|
|
|
|
if (isNaN(size)) {
|
|
return '';
|
|
}
|
|
|
|
return filesize(size, {
|
|
base: 2,
|
|
round: 1
|
|
});
|
|
}
|
|
|
|
export default formatBytes;
|