Pass Empty Variables to Function
The below code doesn't work, b/c JSL evaluates emptyVar when you try to pass it to the function instead of evaluating it on run time w/in the function.
isEmptyTest = Function({var},
return(isempty(var));
);
isEmptyTest(emptyVar);
It would be awesome if this was changed.
