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

Function isRecord

apps/sim/lib/logs/execution/progress-markers.ts:160–162  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

158}
159
160function isRecord(value: unknown): value is Record<string, unknown> {
161 return typeof value === 'object' && value !== null && !Array.isArray(value)
162}
163
164/**
165 * Parse a stored last-started marker, rebuilding it from validated fields so a

Callers 2

parseStartedMarkerFunction · 0.70
parseCompletedMarkerFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected