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

Function getString

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

Source from the content-addressed store, hash-verified

80}
81
82function getString(value: unknown): string | null {
83 return typeof value === 'string' ? value : null
84}
85
86function getNumber(value: unknown): number | null {
87 return typeof value === 'number' && Number.isFinite(value) ? value : null

Calls

no outgoing calls

Tested by

no test coverage detected