Registry_exists - hpgDesigns/hpgdesigns-dev.io GitHub Wiki

Description

Gets whether or not the given name exists in the registry and returns the result.

Parameters

Parameter Data Type Description
name string the name of the registry value

Return Values

boolean: Returns whether the given name exists.

Example Call

// demonstrates checking if a name exists in the registry
if (registry_exists("")) {
  // name does exist
} else {
  // name does not exist
}

NOTOC