biggerThan
biggerThan :: Number → a → Boolean
Last updated
biggerThan :: Number → a → Boolean
Last updated
Takes a number num and return a new function that evaluates whether the received value is of type number and it's bigger than num (the one previously defined). The evaluation is not inclusive.
Please note, biggerThan returned function does not evaluate if the received value is an integer or a float, it only evaluates that it is bigger than the defined one. A good improvement for the isAdult validator from the example above could be the following: