UNPKG

hd-utils

Version:

A handy utils for modern JS developers

8 lines (7 loc) 261 B
/** * @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. */ const isSmallerThan = (a, b) => a < b; export default isSmallerThan;