> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Convert to True/False

> Convert an arbitrary value into a Boolean.

| Input     | Type | Required | Description           |
| --------- | ---- | -------- | --------------------- |
| **Value** | Any  | Yes      | The value to convert. |

| Output      | Type    | Description                     |
| ----------- | ------- | ------------------------------- |
| **Boolean** | Boolean | The converted true/false value. |

The following become `false`:

* `null`, `false`, `0`, empty text, and missing values
* The text `"false"` in any capitalization

All other values become `true`, including empty lists, empty objects, and text
containing spaces.
