(locale: string)
| 81 | * |
| 82 | */ |
| 83 | export function getLocaleCurrencyCode(locale: string): string | null { |
| 84 | const data = findLocaleData(locale); |
| 85 | return data[LocaleDataIndex.CurrencyCode] || null; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Retrieves the plural function used by ICU expressions to determine the plural case to use |
no test coverage detected