lessThan
ts
const lessThan: OperatorFn;Defined in: operations.ts:218
Checks if each argument is less 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