scripts.lib.is_int()On this page.is_int()A function to test whether the input is an integer. Syntax #fs.scripts.lib().is_int(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 = -1; return l.is_int(my_test_input);}