(value: unknown)
| 2 | import * as Effect from "effect/Effect"; |
| 3 | |
| 4 | const isRecord = (value: unknown): value is Record<string, unknown> => |
| 5 | typeof value === "object" && value !== null && !Array.isArray(value); |
| 6 | |
| 7 | const stripRepeatedErrorPrefix = (input: string): string => { |
| 8 | let output = input.trim(); |
no outgoing calls
no test coverage detected