(value: unknown, key: string)
| 21 | }; |
| 22 | |
| 23 | const stringValue = (value: unknown, key: string): string | undefined => { |
| 24 | const field = objectValue(value, key); |
| 25 | return typeof field === "string" ? field : undefined; |
| 26 | }; |
| 27 | |
| 28 | const firstFailureOrDefect = (cause: Cause.Cause<unknown>): unknown => { |
| 29 | const failure = Cause.findErrorOption(cause); |
no test coverage detected