()
| 2 | import {supportedLocales} from '@formatjs_generated/cldr.supported-locales/intl-datetimeformat.js' |
| 3 | |
| 4 | function supportsDateStyle() { |
| 5 | try { |
| 6 | return !!( |
| 7 | new Intl.DateTimeFormat(undefined, { |
| 8 | dateStyle: 'short', |
| 9 | } as any).resolvedOptions() as any |
| 10 | ).dateStyle |
| 11 | } catch { |
| 12 | return false |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * https://bugs.chromium.org/p/chromium/issues/detail?id=865351 |
no test coverage detected