(dateString: string)
| 318 | * For internal logic, prefer parseDateToUTC. |
| 319 | */ |
| 320 | export function parseDateToLocal(dateString: string): Date { |
| 321 | return parseDateToLocalInternal(dateString); |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Smart date parsing that detects timezone info and handles appropriately |
no test coverage detected