UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

12 lines 360 B
/** * @author: yanxianliang * @date: 2025-07-12 18:01 * @desc: 判断节点是否已经初始化过 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { useGetState } from "../state/useGetState"; export var useInitialized = function useInitialized(id) { var getState = useGetState(); return getState().initialNodeIdSet.has(id); };