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

Function setFilteredOutputValue

apps/sim/executor/utils/output-filter.ts:9–20  ·  view source on GitHub ↗
(
  output: Record<string, unknown>,
  key: string,
  value: unknown
)

Source from the content-addressed store, hash-verified

7import type { SerializedBlock } from '@/serializer/types'
8
9function setFilteredOutputValue(
10 output: Record<string, unknown>,
11 key: string,
12 value: unknown
13): void {
14 Object.defineProperty(output, key, {
15 value,
16 enumerable: true,
17 configurable: true,
18 writable: true,
19 })
20}
21
22/**
23 * Filters block output for logging/display purposes.

Callers 1

filterOutputForLogFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected