Appearance
const le: <T>(val2: T) => (val1: T) => boolean
Returns a function that compares val1 <= val2.
cb.le(2)(1) // true
cb.le(1)(1) // true