(value: unknown)
| 163 | } |
| 164 | |
| 165 | function isObject(value: unknown): value is Record<string, unknown> { |
| 166 | return typeof value === "object" && value !== null; |
| 167 | } |
| 168 | |
| 169 | function getTargetValue(target: Record<string, unknown>, keys: string[]) { |
| 170 | const key = keys[0]; |
no outgoing calls
no test coverage detected