Repository URL to install this package:
|
Version:
2.0.2 ▾
|
/**
* @todo - this should be handled in Money
*/
// if (value === '' || value.startsWith('$')) {
// return value
// } else {
// return '$' + value
// }
const customizablePriceFormatters = {
standardCurrencyCode: 'USD',
currencySymbol: '$',
rangeSeparator: ' - ',
}
export { customizablePriceFormatters }