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

Function getBoolean

apps/sim/tools/vanta/utils.ts:90–92  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

88}
89
90function getBoolean(value: unknown): boolean | null {
91 return typeof value === 'boolean' ? value : null
92}
93
94function getStringArray(value: unknown): string[] {
95 if (!Array.isArray(value)) return []

Callers 8

normalizeVantaPageInfoFunction · 0.70
normalizeVantaTestFunction · 0.70
normalizeVantaDocumentFunction · 0.70
normalizeVantaVendorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected