Compares two values to check if x >= y. If x is an object with a gte method, it returns x.gte(y), also checks x.eq(y) and x.gt(y). Otherwise it returns the result of x >= y.
x >= y
x
gte
x.gte(y)
x.eq(y)
x.gt(y)
true if x is less greater than or equal to y or false otherwise.
true
y
false
Generated using TypeDoc
Compares two values to check if
x >= y
. Ifx
is an object with agte
method, it returnsx.gte(y)
, also checksx.eq(y)
andx.gt(y)
. Otherwise it returns the result ofx >= y
.Returns
true
ifx
is less greater than or equal toy
orfalse
otherwise.See