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

Function getOptionalString

apps/sim/tools/trello/shared.ts:26–28  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

24}
25
26function getOptionalString(value: unknown): string | null {
27 return typeof value === 'string' ? value : null
28}
29
30function getOptionalBoolean(value: unknown): boolean | null {
31 return typeof value === 'boolean' ? value : null

Callers 8

mapTrelloLabelFunction · 0.85
mapTrelloMemberFunction · 0.85
mapActionCardTargetFunction · 0.85
mapActionBoardTargetFunction · 0.85
mapTrelloCardFunction · 0.85
mapTrelloBoardFunction · 0.85
mapTrelloChecklistFunction · 0.85
mapTrelloActionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected