boolean_check
Checks if a value is truthy by ensuring it is not False, None, or an empty string.
def boolean_check(
v: any
) - > boolean
Evaluates whether a value is considered truthy by checking that it is not False, None, or an empty string.
Parameters
| Name | Type | Description |
|---|---|---|
| v | any | The value to be evaluated for truthiness against specific exclusion criteria. |
Returns
| Type | Description |
|---|---|
boolean | True if the value is not False, None, or an empty string; otherwise False. |