greaterThan
greaterThan() tests whether a Number is strictly greater than a threshold (wrapped or raw). Supports the curried version.
Interactive example
Syntax
Classic signature
typescript
function greaterThan(
value: Number,
threshold: Number | number
): booleanCurried signature
typescript
function greaterThan(
threshold: Number | number
): (value: Number) => booleanParameters
value: base value (classic signature only).threshold: comparison threshold.
Return value
true if unwrap(value) > unwrap(threshold), otherwise false.
