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

Function stripUserFileBase64

apps/sim/lib/execution/payloads/serializer.ts:41–44  ·  view source on GitHub ↗
(value: T)

Source from the content-addressed store, hash-verified

39}
40
41function stripUserFileBase64<T extends { base64?: unknown }>(value: T): Omit<T, 'base64'> {
42 const { base64: _base64, ...rest } = value
43 return rest
44}
45
46function canPersistDurably(options: CompactExecutionPayloadOptions): boolean {
47 return Boolean(options.workspaceId && options.workflowId && options.executionId)

Callers 1

compactValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected