gte source npm

_.gte(value, other)

Checks if value is greater than or equal to other.

Arguments

  1. value (*)

    The value to compare.

  2. other (*)

    The other value to compare.

Returns (boolean)

Returns true if value is greater than or equal to other, else false.

Example

_.gte(3, 1);
// => true

_.gte(3, 3);
// => true

_.gte(1, 3);
// => false