( amountInCents: number, centsPerCredit: number, )
| 18 | * @returns The number of credits |
| 19 | */ |
| 20 | export function convertStripeGrantAmountToCredits( |
| 21 | amountInCents: number, |
| 22 | centsPerCredit: number, |
| 23 | ): number { |
| 24 | return Math.floor(amountInCents / centsPerCredit) |
| 25 | } |