dry-wash-pl/src/lib/date-helpers.ts

16 lines
425 B
TypeScript
Raw Normal View History

2024-11-24 12:08:45 +03:00
import dayjs from 'dayjs';
import i18next from 'i18next';
export const getTimeSlot = (start: string, end: string) => {
const startDay = dayjs(start).format('HH:mm');
const endDay = dayjs(end).format('HH:mm');
return i18next.t('~:dry-wash.washTime.timeSlot', {
start: startDay,
end: endDay,
});
};
2024-12-22 11:15:50 +03:00
export const formatDatetime = (datetime: string) => {
return dayjs(datetime).format('HH:mm DD.MM.YYYY');
};