(cache: CodeCache, nodeId: string)
| 75 | * @param nodeId - The unique node ID to check |
| 76 | */ |
| 77 | export function isComponentGenerated(cache: CodeCache, nodeId: string): boolean { |
| 78 | return cache.generatedComponents.includes(nodeId); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Mark a component as generated |
no outgoing calls
no test coverage detected