(locale: string, width: FormatWidth)
| 417 | * Use `Intl.DateTimeFormat` for date formating instead. |
| 418 | */ |
| 419 | export function getLocaleDateFormat(locale: string, width: FormatWidth): string { |
| 420 | const data = ɵfindLocaleData(locale); |
| 421 | return getLastDefinedValue(data[ɵLocaleDataIndex.DateFormat], width); |
| 422 | } |
| 423 | |
| 424 | /** |
| 425 | * Retrieves a localized time-value formatting string. |
no test coverage detected
searching dependent graphs…