eqs()

Determines if one value is strictly equal to (===) another value.

This function is valid in v2.8.0 to v2.11.0. This function has been downloaded 0 times.

Parameters

{*} value1
Value to be checked to see if it is strictly equal to (===) value2.
{*=} value2 Optional
Value to be checked to see if it is strictly equal to (===) value1.

Returns

{boolean|Function}
If value1 and value2 are given a boolean indicating if value1 is strictly equal to (===) value2 will be returned. Otherwise a partial function will be returned which when called will accept on value and will return a boolean indicating if that value is strictly equal to (===) value1.

Required Function

This function directly requires the following function which is included automatically:

  • lt()
    Determines if one value is less than another value.

Requiring Function

This function is directly required by the following function:

  • lt()
    Determines if one value is less than another value.