(variableId: string | undefined)
| 19 | } |
| 20 | |
| 21 | function isVariableStillPresent(variableId: string | undefined): boolean { |
| 22 | if (!variableId) return true |
| 23 | try { |
| 24 | const { useVariablesStore } = require('@/stores/variables/store') |
| 25 | return Boolean(useVariablesStore.getState().variables[variableId]) |
| 26 | } catch { |
| 27 | return true |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | const logger = createLogger('OperationQueue') |
| 32 |
no outgoing calls
no test coverage detected