scripts.lib.hash_code()On this page.hash_code()A function which creates a hash code out of an input string. Syntax #fs.scripts.lib().hash_code(str) Parameters str The string to be hashed. Return Returns a string. Example function(context, args) { const l = #fs.scripts.lib(); const my_string; return l.hash_code(my_string);}