ProzillaOS/src/features/_utils/time.utils.ts
2024-06-05 21:46:34 +02:00

13 lines
No EOL
274 B
TypeScript

import { formatRelativeTime } from "./date.utils";
export class TimeManager {
static startDate: Date;
static reset() {
TimeManager.startDate = new Date();
}
static getUptime(precision = 2) {
return formatRelativeTime(TimeManager.startDate, precision, false);
}
}