UNPKG

hd-utils

Version:

A handy utils for modern JS developers

9 lines (8 loc) 316 B
import { Key } from '../utilityTypes'; /** * @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. */ declare const isBiggerThan: (a: Key, b: Key) => boolean; export default isBiggerThan;