(value: unknown)
| 816 | }).pipe(Effect.withSpan("OpenApi.streamOperationBindings")); |
| 817 | |
| 818 | const isPathItemValue = (value: unknown): value is Record<string, unknown> => |
| 819 | value !== null && typeof value === "object" && !Array.isArray(value); |
| 820 | |
| 821 | /** Parse one path-item range to its kept (optionally trimmed) value. Applied |
| 822 | * identically wherever a structure is walked more than once, so per-operation |