is()

Tests to see if two or more values are exactly the same. This is similar to === but will also indicate that NaN is NaN and will indicate that -0 is not 0.

This function is valid in v2.0.0 to v2.12.3. This function has been downloaded 0 times.

Parameters

{*} x
A value.
{*} y
Values to be compared to x for equality.

Returns

{boolean}
true if all of the parameters passed in are the same, otherwise false is returned.

Required Function

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

  • slice()
    Slice does not modify the original array, but instead returns a shallow copy of elements from the original array.

Requiring Functions

This function is directly required by the following functions:

  • chain()
    Creates a chained version of a value.
  • diffArrays()
    Creates a new array which is the difference of the two given arrays.
  • uniquify()
    Creates a new version of an array with all of the duplicate values removed.
  • wait()
    Creates a waiter function which takes orders and serves orders in a way and calls a ready function when all orders have been served.