getVariable
This tag gets a Hackvertor variable
Created by: hackvertor
Installed 1 times
Viewed: 63
Category: Variables
Created on: Monday, October 7, 2024 at 8:51:16 PM
Updated on: Sunday, May 25, 2025 at 5:29:42 PM
Tag arguments
[
{
"type": "string",
"help": "This is the name of the variable",
"defaultValue": "foo"
}
]
Code
class getVariable {
encode(input, name) {
return hv.variables[name];
}
}