mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
18 lines
267 B
JavaScript
18 lines
267 B
JavaScript
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;
|