(plan: string | null | undefined)
| 43 | } |
| 44 | |
| 45 | export function isPaid(plan: string | null | undefined): boolean { |
| 46 | return isPro(plan) || isTeam(plan) || isEnterprise(plan) |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * True when the plan **name** is a team/enterprise plan. This is a |
no test coverage detected