Gio.Action.name_is_valid

function name_is_valid(action_name: String): Boolean {
    // Gjs wrapper for g_action_name_is_valid()
}
  

Checks if action_name is valid.

action_name is valid if it consists only of alphanumeric characters, plus '-' and '.'. The empty string is not a valid action name.

It is an error to call this function with a non-utf8 action_name. action_name must not be null.

Since 2.38

action_name

an potential action name

Returns

true if action_name is valid