2020-06-10 20:00:43 +00:00
|
|
|
export const bytesToMegabytes = (bytes: number) => Math.floor(bytes / 1024 / 1024);
|
|
|
|
|
|
|
|
export const megabytesToBytes = (mb: number) => Math.floor(mb * 1024 * 1024);
|
|
|
|
|
2019-07-28 03:23:51 +00:00
|
|
|
export function bytesToHuman (bytes: number): string {
|
2019-08-17 23:03:10 +00:00
|
|
|
if (bytes === 0) {
|
|
|
|
return '0 kB';
|
|
|
|
}
|
|
|
|
|
2020-06-10 20:00:43 +00:00
|
|
|
const i = Math.floor(Math.log(bytes) / Math.log(1024));
|
|
|
|
return `${Number((bytes / Math.pow(1024, i)).toFixed(2))} ${[ 'Bytes', 'kB', 'MB', 'GB', 'TB' ][i]}`;
|
2019-07-28 03:23:51 +00:00
|
|
|
}
|
2019-09-29 20:23:15 +00:00
|
|
|
|
2020-06-10 20:00:43 +00:00
|
|
|
export function megabytesToHuman (mb: number): string {
|
|
|
|
return bytesToHuman(megabytesToBytes(mb));
|
|
|
|
}
|
2020-04-10 19:41:08 +00:00
|
|
|
|
|
|
|
export const randomInt = (low: number, high: number) => Math.floor(Math.random() * (high - low) + low);
|
2020-04-10 20:57:24 +00:00
|
|
|
|
|
|
|
export const cleanDirectoryPath = (path: string) => path.replace(/(^#\/*)|(\/(\/*))|(^$)/g, '/');
|
2020-07-05 04:46:49 +00:00
|
|
|
|
|
|
|
export const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1).toLowerCase();
|
2020-11-29 21:46:35 +00:00
|
|
|
|
|
|
|
export function fileBitsToString (mode: string, directory: boolean): string {
|
|
|
|
const m = parseInt(mode, 8);
|
|
|
|
|
|
|
|
let buf = '';
|
|
|
|
'dalTLDpSugct?'.split('').forEach((c, i) => {
|
|
|
|
if ((m & (1 << (32 - 1 - i))) !== 0) {
|
|
|
|
buf = buf + c;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (buf.length === 0) {
|
|
|
|
// If the file is directory, make sure it has the directory flag.
|
|
|
|
if (directory) {
|
|
|
|
buf = 'd';
|
|
|
|
} else {
|
|
|
|
buf = '-';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
'rwxrwxrwx'.split('').forEach((c, i) => {
|
|
|
|
if ((m & (1 << (9 - 1 - i))) !== 0) {
|
|
|
|
buf = buf + c;
|
|
|
|
} else {
|
|
|
|
buf = buf + '-';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|