.is_arr()
A function to test whether the input is an array.
Syntax
#fs.scripts.lib().is_arr(i);
Parameters
i
"i" is the input to be tested.
Return
Returns a boolean.
Example
function(context, args) {
const l = #fs.scripts.lib();
const my_test_input = ["apples", "bananas", "oranges"];
return l.is_arr(my_test_input);
}