(plan: string | null | undefined)
| 35 | } |
| 36 | |
| 37 | export function isFree(plan: string | null | undefined): boolean { |
| 38 | return !plan || plan === 'free' |
| 39 | } |
| 40 | |
| 41 | export function isEnterprise(plan: string | null | undefined): boolean { |
| 42 | return plan === 'enterprise' |
no outgoing calls
no test coverage detected