blob: dadeaec6f630dcf1f4478f84818c801dd5e2f42a (
plain)
1
2
3
4
5
6
7
8
|
export default function currencyFormat(value) {
const currency = new Intl.NumberFormat('id-ID', {
style: 'currency',
currency: 'IDR',
maximumFractionDigits: 0
});
return currency.format(value);
}
|