## isObject() function

Returns true if the input is an object.

**Signature:**

```typescript
export declare function isObject(obj: unknown): obj is Record<string, unknown>;
```

## Parameters

| Parameter | Type    | Description                       |
| --------- | ------- | --------------------------------- |
| obj       | unknown | The candidate object.            |

**Returns:**

obj is Record<string, unknown>

True if the input is a non-null non-undefined object.
