front-hub/src/utils/date.ts

7 lines
161 B
TypeScript
Raw Normal View History

2023-05-09 16:28:52 +00:00
export function isDateToday(date: Date): boolean {
const today = new Date();
today.setHours(0, 0, 0, 0);
return date.getTime() > today.getTime();
}