Files
bflows-bandi-fe/src/helpers/getNumberWithCurrency.js
Vitalii Kiiko 676d7621e7 - updated call form, new fields;
- updated preview pages for bando;
- fixed bug with decimal number field;
2024-10-01 12:55:17 +02:00

11 lines
304 B
JavaScript

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