Returns true if y is greater than or equal to x. Same as y >= x.
y
x
y >= x
gte(9)(3)// => false Copy
gte(9)(3)// => false
Generated using TypeDoc
Returns true if
y
is greater than or equal tox
. Same asy >= x
.