summaryrefslogtreecommitdiff
path: root/src/core/utils/currencyFormat.js
blob: 12b68111322e1cc3e1e1ed13132bd98363e14ad9 (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