all repos — stealth-developers @ 33d9ea3c432a663c6fdc2f46b359f245cee1aa1c

src/utils/time.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
export function formatTime(date: Date | string | number): string {
	const d = new Date(date);
	const options: Intl.DateTimeFormatOptions = {
		year: "numeric",
		month: "short",
		day: "2-digit",
		hour: "2-digit",
		minute: "2-digit",
	};
	return d.toLocaleString("en-GB", options);
}