MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / isToday

Function isToday

apps/api/src/controllers/webhook.controller.ts:454–461  ·  view source on GitHub ↗
(date: Date)

Source from the content-addressed store, hash-verified

452}
453
454function isToday(date: Date) {
455 const today = new Date();
456 return (
457 date.getDate() === today.getDate() &&
458 date.getMonth() === today.getMonth() &&
459 date.getFullYear() === today.getFullYear()
460 );
461}

Callers 2

MonthCalendarFunction · 0.85
FieldValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected