Preview: formatCurrency.js
Size: 378 B
//proc/thread-self/root/home/byroehnu/easetack.com/resources/js/utils/formatCurrency.js
export default function formatCurrency(amount, decimals, locale = 'en-US', currency = undefined) {
const options = {
minimumFractionDigits: decimals,
maximumFractionDigits: decimals
};
if (currency) {
options.style = 'currency';
options.currency = currency;
}
return new Intl.NumberFormat(locale, options).format(amount);
}
Directory Contents
Dirs: 0 × Files: 7