(usd: number | Decimal)
| 84 | } |
| 85 | |
| 86 | export function usdToCents(usd: number | Decimal) { |
| 87 | const cents = Math.round(Number(usd) * 100); |
| 88 | return cents >= 0 ? cents : 0; |
| 89 | } |
| 90 | |
| 91 | export async function createStripeCustomerAndConnectItToProject(projectId: string) { |
| 92 | // Find a project |