saleor-dashboard/cypress/support/format/formatCurrencyAmount.js

9 lines
288 B
JavaScript
Raw Normal View History

export function getFormattedCurrencyAmount(amount, currency) {
const language = window.navigator.userLanguage || window.navigator.language;
const formattedCurrencyAmount = amount.toLocaleString(language, {
currency,
style: "currency"
});
return formattedCurrencyAmount;
}