You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Utilities/Number/formatBytes.js

18 lines
267 B

import { filesize } from 'filesize';
function formatBytes(input, showBits = false) {
const size = Number(input);
if (isNaN(size)) {
return '';
}
return filesize(size, {
base: 2,
round: 1,
bits: showBits
});
}
export default formatBytes;