(unitAmount)
| 1 | import { handleCheckoutSessionHelper } from '../../lib/stripeUtil' |
| 2 | |
| 3 | function getDisplayUnitPrice (unitAmount) { |
| 4 | return unitAmount / 100 |
| 5 | } |
| 6 | |
| 7 | function getDisplayCurrency (currency) { |
| 8 | return currency === 'usd' ? '$' : currency |
nothing calls this directly
no outgoing calls
no test coverage detected