Files
Homarr/src/tools/shared/time/date.tool.ts
2023-03-17 22:10:00 +01:00

9 lines
221 B
TypeScript

export const isToday = (date: Date) => {
const today = new Date();
return (
today.getDate() === date.getDate() &&
today.getMonth() === date.getMonth() &&
today.getFullYear() === date.getFullYear()
);
};