Files
bflows-bandi-fe/src/helpers/getNumberWithCurrency.js
Vitalii Kiiko 87684bc76b - added bando preview page;
- added bando form preview;
2024-08-27 17:02:16 +02:00

11 lines
274 B
JavaScript

const getNumberWithCurrency = (value, currency = 'EUR') => {
const formatter = Intl.NumberFormat('it-IT', {
style: 'currency',
currencyDisplay: 'symbol',
currency
})
return formatter.format(value)
}
export default getNumberWithCurrency;