(plan: string | null | undefined)
| 30 | } |
| 31 | |
| 32 | export function isTeam(plan: string | null | undefined): boolean { |
| 33 | if (!plan) return false |
| 34 | return plan === 'team' || plan.startsWith('team_') |
| 35 | } |
| 36 | |
| 37 | export function isFree(plan: string | null | undefined): boolean { |
| 38 | return !plan || plan === 'free' |
no outgoing calls
no test coverage detected