all repos — stealth-developers @ b6e0941babbabd8366ca160ca09bb330a1698eb9

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