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

Function toNullableBoolean

apps/sim/tools/emailbison/utils.ts:476–479  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

474}
475
476function toNullableBoolean(value: unknown): boolean | null {
477 if (value === undefined || value === null) return null
478 return typeof value === 'boolean' ? value : null
479}

Callers 4

mapCampaignFunction · 0.85
mapCampaignTagFunction · 0.85
mapTagFunction · 0.85
mapReplyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected