.is_valid_name()
A function to test whether the input is a valid hackmud username.
Syntax
#fs.scripts.lib().is_valid_name(i);
Parameters
i
The input to be evaluated.
Return
Returns a boolean.
Example
function(context, args) {
const l = #fs.scripts.lib();
const my_test_input = "yrollam";
return l.is_valid_name(my_test_input);
}