> ## Documentation Index
> Fetch the complete documentation index at: https://stars-components.js.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Function: envIsNullish()

> **envIsNullish**(`key`): `boolean`

Defined in: [packages/env-utilities/src/lib/utils.ts:102](https://github.com/wolfstar-project/stars-components/blob/5aefd164bc5fc41e5a35d3abf908c288163dd354/packages/env-utilities/src/lib/utils.ts#L102)

Checks if the value of the specified environment variable is nullish.

## Parameters

### key

keyof [`Env`](/documentation/api/env-utilities/interfaces/Env)

The name of the environment variable.

## Returns

`boolean`

Whether the value of the specified environment variable is:

* `undefined`
* An empty string (`""`)
* The string `"0"`
* The string `"null"`, case insensitive
