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

Function isDepValueUnmet

apps/sim/lib/table/deps.ts:60–62  ·  view source on GitHub ↗

* A dependency column counts as unmet when its value is empty OR explicitly * `false`. An unchecked checkbox is treated as "dependency not satisfied", so * only checking a box (false→true) makes dependents eligible — unchecking * (true→false) never triggers a rerun.

(value: unknown)

Source from the content-addressed store, hash-verified

58 * (true→false) never triggers a rerun.
59 */
60function isDepValueUnmet(value: unknown): boolean {
61 return value === null || value === undefined || value === '' || value === false
62}
63
64/**
65 * True when every output column the group writes still has a non-empty value

Callers 2

areGroupDepsSatisfiedFunction · 0.85
getUnmetGroupDepsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected