( output: Record<string, unknown>, key: string, value: unknown )
| 7 | import type { SerializedBlock } from '@/serializer/types' |
| 8 | |
| 9 | function 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. |
no outgoing calls
no test coverage detected