( framework: string | null | undefined )
| 58 | } |
| 59 | |
| 60 | export function isNodeBackendFramework( |
| 61 | framework: string | null | undefined |
| 62 | ): framework is BackendFramework { |
| 63 | if (!framework) return false; |
| 64 | return BACKEND_FRAMEWORKS.includes(framework as BackendFramework); |
| 65 | } |
| 66 | |
| 67 | export function isPythonFramework( |
| 68 | framework: string | null | undefined |
no outgoing calls
no test coverage detected