> ## 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.

# Is Truthy?

> Convert JavaScript-style truthiness into a Boolean result.

## Input

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

## Output

| Output     | Type    | Description                      |
| ---------- | ------- | -------------------------------- |
| **Result** | Boolean | `true` when the value is truthy. |

`null`, `false`, `0`, empty text, and missing values are falsy. Empty lists
and empty objects are truthy.
