(locale: string, width: FormatWidth)
| 454 | * Use `Intl.DateTimeFormat` for date formating instead. |
| 455 | */ |
| 456 | export function getLocaleDateTimeFormat(locale: string, width: FormatWidth): string { |
| 457 | const data = ɵfindLocaleData(locale); |
| 458 | const dateTimeFormatData = <string[]>data[ɵLocaleDataIndex.DateTimeFormat]; |
| 459 | return getLastDefinedValue(dateTimeFormatData, width); |
| 460 | } |
| 461 | |
| 462 | /** |
| 463 | * Retrieves a localized number symbol that can be used to replace placeholders in number formats. |
no test coverage detected
searching dependent graphs…