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

Function isCredentialSetValue

apps/sim/executor/constants.ts:228–230  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

226} as const
227
228export function isCredentialSetValue(value: string | null | undefined): boolean {
229 return typeof value === 'string' && value.startsWith(CREDENTIAL_SET.PREFIX)
230}
231
232export function extractCredentialSetId(value: string): string {
233 return value.slice(CREDENTIAL_SET.PREFIX.length)

Callers 5

poller.tsFile · 0.90
fetchHubSpotPropertiesFunction · 0.90
poller.tsFile · 0.90
poller.tsFile · 0.90
route.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected