all repos — stealth-developers @ b9d33cd3b741a8075a82d4d1403b7cee6eec9f48

pkgs/bot/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);
}