/**
* @example isSmallerThan(1,2) => true
* @description The function isSmallerThan takes two arguments, a and b, and returns true if a is smaller than b,
* otherwise it returns false.
*/constisSmallerThan = (a, b) => a < b;
exportdefault isSmallerThan;