(format: string)
| 108 | }; |
| 109 | |
| 110 | const normalizeDateFormat = (format: string) => { |
| 111 | if (format === 'l' || format === 'LL') { |
| 112 | return 'YYYY-MM-DD'; |
| 113 | } |
| 114 | return format; |
| 115 | }; |
| 116 | |
| 117 | const normalizeTimeZone = (timeZone: string) => { |
| 118 | if (timeZone === 'client') { |