## isEmpty() function

Returns true if the value is empty (null, undefined, empty string, or empty object).

**Signature:**

```typescript
export declare function isEmpty(v: unknown): boolean;
```

## Parameters

| Parameter | Type    | Description                 |
|-----------|---------|-----------------------------|
| v         | unknown | Any value.                 |

**Returns:**

boolean

True if the value is an empty string or an empty object.
