mirror of
https://github.com/Myxelium/RandomMemerBot.git
synced 2026-04-09 08:59:39 +00:00
7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
export function dateToString(date: Date): string {
|
|
return date.toLocaleString('sv-SE', { timeZone: 'Europe/Stockholm' });
|
|
}
|
|
|
|
export function convertHoursToMinutes(hours: number): number {
|
|
return hours * 60;
|
|
} |