10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
/**
|
|
* For Turkey fixes currency label with locale options
|
|
*
|
|
* @param {string} currency
|
|
* @param {string} locale
|
|
* @returns {string}
|
|
*/
|
|
export function normalizeCurrencyLabel(currency, locale) {
|
|
return currency === 'TRY' && locale === 'tr-TR' ? 'TL' : currency;
|
|
}
|