Check if a [[Number]] is lower or equal to another one
to compare
to compare to
Boolean
import {N} from 'ts-toolbelt' type test0 = N.LowerEq<'7', '5'> // False type test1 = N.LowerEq<'5', '5'> // True type test2 = N.LowerEq<'5', '7'> // True
Check if a [[Number]] is lower or equal to another one