UNPKG

146 BJavaScriptView Raw
1import accounting from 'accounting'
2
3export const formatPrice = (value = 0, ...options) => {
4 return accounting.formatMoney(value, ...options)
5}