(value: unknown)
| 397 | } |
| 398 | |
| 399 | function readObject(value: unknown): Record<string, unknown> | undefined { |
| 400 | return isRecord(value) ? value : undefined; |
| 401 | } |
| 402 | |
| 403 | function mergeClientOptions( |
| 404 | config: AgentDeviceClientConfig, |
no test coverage detected