MCPcopy Index your code
hub / github.com/simstudioai/sim / areOutputsFilled

Function areOutputsFilled

apps/sim/lib/table/deps.ts:70–77  ·  view source on GitHub ↗
(group: WorkflowGroup, row: TableRow)

Source from the content-addressed store, hash-verified

68 * incomplete and should be re-run on dep-fill / manual incomplete-mode runs.
69 */
70export function areOutputsFilled(group: WorkflowGroup, row: TableRow): boolean {
71 if (group.outputs.length === 0) return true
72 for (const o of group.outputs) {
73 const v = row.data[o.columnName]
74 if (v === null || v === undefined || v === '') return false
75 }
76 return true
77}
78
79/**
80 * Returns true when every column this group depends on is non-empty on this

Callers 3

classifyEligibilityFunction · 0.90
resolveCellExecFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected