currency-format.js 101B

1234
  1. export const IDRCurrencyFormat = (number) => {
  2. return 'Rp' + number.toLocaleString('id') + ',00'
  3. }