(data: any)
| 601 | ɵgetLocalePluralCase; |
| 602 | |
| 603 | function checkFullData(data: any) { |
| 604 | if (!data[ɵLocaleDataIndex.ExtraData]) { |
| 605 | throw new RuntimeError( |
| 606 | RuntimeErrorCode.MISSING_EXTRA_LOCALE_DATA_FOR_LOCALE, |
| 607 | ngDevMode && |
| 608 | `Missing extra locale data for the locale "${ |
| 609 | data[ɵLocaleDataIndex.LocaleId] |
| 610 | }". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`, |
| 611 | ); |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * Retrieves locale-specific rules used to determine which day period to use |
no outgoing calls
no test coverage detected
searching dependent graphs…