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

Function getOptionalBoolean

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

Source from the content-addressed store, hash-verified

28}
29
30function getOptionalBoolean(value: unknown): boolean | null {
31 return typeof value === 'boolean' ? value : null
32}
33
34function getNumber(value: unknown): number {
35 if (typeof value === 'number' && Number.isFinite(value)) {

Callers 1

mapTrelloCardFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected