Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/money / src / config.ts
Size: Mime:
/**
 * @todo - this should be handled in Money
 */
// if (value === '' || value.startsWith('$')) {
//   return value
// } else {
//   return '$' + value
// }
const customizablePriceFormatters = {
  standardCurrencyCode: 'USD',
  currencySymbol: '$',
  rangeSeparator: ' - ',
}

export { customizablePriceFormatters }