(dateString: string)
| 328 | * @deprecated Use parseDateToUTC for internal logic or parseDateToLocal for UI. |
| 329 | */ |
| 330 | export function parseDate(dateString: string): Date { |
| 331 | return parseDateToLocalInternal(dateString); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Safe date comparison that handles mixed timezone contexts |
no test coverage detected