(ref?: string | null)
| 66 | const ENTRY_COMPONENT_SLUG = 'entry-point'; |
| 67 | |
| 68 | const isEntryPointComponentRef = (ref?: string | null) => |
| 69 | ref === ENTRY_COMPONENT_ID || ref === ENTRY_COMPONENT_SLUG; |
| 70 | |
| 71 | const isEntryPointNode = (node?: Node<NodeData> | null) => { |
| 72 | if (!node) return false; |
no outgoing calls
no test coverage detected