mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-04-23 11:49:56 -04:00
27 lines
649 B
TypeScript
27 lines
649 B
TypeScript
import { intlFormat } from 'date-fns';
|
|
|
|
export function formatBytes(bytes: number) {
|
|
if (bytes === 0) return '0 B';
|
|
|
|
const k = 1024;
|
|
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
|
|
return (bytes / Math.pow(k, i)).toFixed(2) + ' ' + sizes[i];
|
|
}
|
|
|
|
export function formatDate(date?: Date | number, showTime: boolean = true) {
|
|
if (!date) return;
|
|
return intlFormat(date, {
|
|
year: 'numeric',
|
|
month: 'numeric',
|
|
day: 'numeric',
|
|
...(showTime && {
|
|
hour: 'numeric',
|
|
minute: 'numeric',
|
|
second: 'numeric',
|
|
}),
|
|
hour12: false,
|
|
});
|
|
}
|