MCPcopy Index your code
hub / github.com/simstudioai/sim / isEnterprise

Function isEnterprise

apps/sim/lib/billing/plan-helpers.ts:41–43  ·  view source on GitHub ↗
(plan: string | null | undefined)

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected