* Determines whether the event is all-day based on whether `date` (not `dateTime`) is used.
(event: CalendarEvent)
| 79 | * Determines whether the event is all-day based on whether `date` (not `dateTime`) is used. |
| 80 | */ |
| 81 | function isAllDayEvent(event: CalendarEvent): boolean { |
| 82 | return Boolean(event.start?.date && !event.start?.dateTime) |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Formats attendees into a comma-separated list of names/emails. |
no outgoing calls
no test coverage detected