KeyExists
7/14/25Less than 1 minute
CloudVariableBank.KeyExists(string key)
Check if a key exists.
Parameters:
| Name | Type | Description |
|---|---|---|
| key | string | The key to check. |
Returns:
| type | Description |
|---|---|
| boolean | True if the key exists. |
Usage
---@type CloudVariableBank
local cloudvariablebank;
---@type string
local key;
local val0 = cloudvariablebank.KeyExists(key)
