Divides the provided input by the divisor and returns the result with a number of decimal places defined in the precision value.
Parameters
input: The value to be divided$(variable)divisor: The value by which to divide the input$(variable)precision: The number of decimal places to retain in the result$(variable)Outputs
The result of the division.
Example
my_divide_task [type="divide"
input="$(json_parse_result)"
divisor="3"
precision="2"]
Given the input 10, this example returns 3.33.