2019-07-28 05:23:51 +02:00
|
|
|
export function bytesToHuman (bytes: number): string {
|
2019-08-18 01:03:10 +02:00
|
|
|
if (bytes === 0) {
|
|
|
|
return '0 kB';
|
|
|
|
}
|
|
|
|
|
2019-07-28 05:23:51 +02:00
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(1000));
|
|
|
|
// @ts-ignore
|
2020-03-29 23:19:17 +02:00
|
|
|
return `${(bytes / Math.pow(1000, i)).toFixed(2) * 1} ${[ 'Bytes', 'kB', 'MB', 'GB', 'TB' ][i]}`;
|
2019-07-28 05:23:51 +02:00
|
|
|
}
|
2019-09-29 22:23:15 +02:00
|
|
|
|
|
|
|
export const bytesToMegabytes = (bytes: number) => Math.floor(bytes / 1000 / 1000);
|
2020-04-10 21:41:08 +02:00
|
|
|
|
|
|
|
export const randomInt = (low: number, high: number) => Math.floor(Math.random() * (high - low) + low);
|