mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 06:48:42 +02:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { format } from "date-fns";
|
|
|
|
export function formatTime(fmt: string): string {
|
|
try {
|
|
return format(new Date(), fmt);
|
|
} catch (err: any) {
|
|
console.error(err);
|
|
return "format error";
|
|
}
|
|
}
|