2021-04-02 11:01:38 +00:00
|
|
|
export function getFormattedCurrencyAmount(amount, currency) {
|
|
|
|
const language = window.navigator.userLanguage || window.navigator.language;
|
2021-09-27 10:04:21 +00:00
|
|
|
return amount.toLocaleString(language, {
|
2021-04-02 11:01:38 +00:00
|
|
|
currency,
|
|
|
|
style: "currency"
|
|
|
|
});
|
|
|
|
}
|
2021-09-10 08:59:46 +00:00
|
|
|
|
|
|
|
export function getCurrencyAndAmountInString(amount, currency) {
|
|
|
|
return `${currency}${amount.toFixed(2)}`;
|
|
|
|
}
|