hd-utils
Version:
A handy utils for modern JS developers
9 lines (8 loc) • 319 B
TypeScript
import { Key } from '../utilityTypes';
/**
* @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.
*/
declare const isSmallerThan: (a: Key, b: Key) => boolean;
export default isSmallerThan;