greaterThan
ts
const greaterThan: OperatorFn;Defined in: operations.ts:174
Checks if each argument is greater than the next.
Remarks
Evaluated sequentially: a > b > c is evaluated as (a > b) && (b > c)
Param
Numeric arguments
Returns
true if all comparisons are satisfied, otherwise false
Since
1.0.0
Author
Simon Kovtyk