forked from ajnart/homarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request ajnart#195 from LarveyOfficial/patch-3
More Information in Torrents Module
- Loading branch information
Showing
6 changed files
with
95 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* Format bytes as human-readable text. | ||
* | ||
* @param bytes Number of bytes. | ||
* @param si True to use metric (SI) units, aka powers of 1000. False to use | ||
* binary (IEC), aka powers of 1024. | ||
* @param dp Number of decimal places to display. | ||
* | ||
* @return Formatted string. | ||
*/ | ||
export function humanFileSize(initialBytes: number, si = true, dp = 1) { | ||
const thresh = si ? 1000 : 1024; | ||
let bytes = initialBytes; | ||
|
||
if (Math.abs(bytes) < thresh) { | ||
return `${bytes} B`; | ||
} | ||
|
||
const units = si | ||
? ['kb', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'] | ||
: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']; | ||
let u = -1; | ||
const r = 10 ** dp; | ||
|
||
do { | ||
bytes /= thresh; | ||
u += 1; | ||
} while (Math.round(Math.abs(bytes) * r) / r >= thresh && u < units.length - 1); | ||
|
||
return `${bytes.toFixed(dp)} ${units[u]}`; | ||
} |