Checks equality between two values of any type using strict equality.
The first value to compare
A function that takes another value and returns whether it is strictly equal to the first value
eqAny('hello')('hello') // trueeqAny('hello')('Hi') // falseeqAny('')(2) // false
Checks equality between two values of any type using strict equality.