(value: string)
| 368 | } |
| 369 | |
| 370 | export function decodeStringArray(value: string) { |
| 371 | if (!value) return null; |
| 372 | return parseArray(value, (value) => value); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Decode numerical timezone offset from provided date string. |
no test coverage detected