(plan: string | null | undefined)
| 39 | } |
| 40 | |
| 41 | export function isEnterprise(plan: string | null | undefined): boolean { |
| 42 | return plan === 'enterprise' |
| 43 | } |
| 44 | |
| 45 | export function isPaid(plan: string | null | undefined): boolean { |
| 46 | return isPro(plan) || isTeam(plan) || isEnterprise(plan) |
no outgoing calls
no test coverage detected