(date: Date)
| 102 | } |
| 103 | |
| 104 | function getDayName(date: Date): string { |
| 105 | return date.toLocaleDateString('en-US', { weekday: 'long' }); |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * Formats a timestamp to a relative time string (e.g., "2 hours ago", "3 days ago") |
no outgoing calls
no test coverage detected