mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
17 lines
234 B
JavaScript
17 lines
234 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;
|