summaryrefslogtreecommitdiff
path: root/src/core/utils/currencyFormat.js
blob: 31f4a8dc841d839238bca468c4c32bc651e467f4 (plain)
1
2
3
4
5
6
7
8
9
10
const currencyFormat = (value) => {
  const currency = new Intl.NumberFormat('id-ID', {
    style: 'currency', 
    currency: 'IDR',
    maximumFractionDigits: 0
  })
  return currency.format(value)
}

export default currencyFormat