.JSF()
A function that takes a numerical seed and returns a function that can be used to generate prng based on the JSF algorithm.
Syntax
#fs.scripts.lib().JSF(seed);
Parameters
seed
Numerical seed for the RNG.
Return
Returns a function.
Example
function(context, args) {
const l = #fs.scripts.lib();
const my_seed = 1234;
const rng = l.JSF(my_seed);
return rng();
}