(locale: string)
| 94 | * @see [Internationalization (i18n) Guide](guide/i18n) |
| 95 | */ |
| 96 | export function getLocalePluralCase(locale: string): (value: number) => number { |
| 97 | const data = findLocaleData(locale); |
| 98 | return data[LocaleDataIndex.PluralCase]; |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Helper function to get the given `normalizedLocale` from `LOCALE_DATA` |
no test coverage detected
searching dependent graphs…