UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 258 B
/** * @example isBiggerThan(1,2) => false * @description The function isBiggerThan takes two arguments, a and b, and returns true if a is greater than b, * otherwise it returns false. */ const isBiggerThan = (a, b) => a > b; export default isBiggerThan;