Files
kredits-web/app/helpers/fmt-fiat-currency.js
T
2020-07-09 17:07:05 +02:00

11 lines
294 B
JavaScript

import { helper } from '@ember/component/helper';
export default helper(function fmtFiatCurrency(params) {
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
currency: params[1] || 'EUR',
minimumFractionDigits: 2
})
return formatter.format(params[0]);
});