(locale: string, width: FormatWidth)
| 435 | * Use `Intl.DateTimeFormat` for date formating instead. |
| 436 | */ |
| 437 | export function getLocaleTimeFormat(locale: string, width: FormatWidth): string { |
| 438 | const data = ɵfindLocaleData(locale); |
| 439 | return getLastDefinedValue(data[ɵLocaleDataIndex.TimeFormat], width); |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * Retrieves a localized date-time formatting string. |
no test coverage detected
searching dependent graphs…