Checks if the given number is greater than the given minimum.
isAbove(3, 2); // true isAbove(2, 3); // false isAbove(3, 3); // false
The number to check.
The minimum value exclusive.
Whether the number is greater than the minimum.
Generated using TypeDoc
Checks if the given number is greater than the given minimum.
isAbove(3, 2); // true isAbove(2, 3); // false isAbove(3, 3); // false