( framework: string | null | undefined )
| 65 | } |
| 66 | |
| 67 | export function isPythonFramework( |
| 68 | framework: string | null | undefined |
| 69 | ): framework is (typeof PYTHON_FRAMEWORKS)[number] { |
| 70 | if (!framework) return false; |
| 71 | return PYTHON_FRAMEWORKS.includes(framework as PythonFramework); |
| 72 | } |
| 73 | |
| 74 | // Opt builds into experimental builder, but don't introspect the app |
| 75 | export function isExperimentalBackendsWithoutIntrospectionEnabled(): boolean { |
no outgoing calls
no test coverage detected