/**
* @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.
*/constisBiggerThan = (a, b) => a > b;
exportdefault isBiggerThan;