Get Started
npm i @marchintosh94/number-formatyarn add @marchintosh94/number-formatQuick Start
import { initNumberFormat } from '@marchintosh94/number-format'
// ...other code...
initNumberFormat({
defaultDecimals: 2,
defaultErrorValue: 0,
delimitersChar: {
decimal: '.',
thousands: ','
},
defaultCurrecySymbol: {sign: '$', code: 'USD'}
})Last updated