all repos — stealth-developers @ 71c8aa9aceea9650a5e4904940b0848c1516ece0

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);
}