Checks equality between two values of type T 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
eq(5)(5) // trueeq(5)(6) // falseeq({})({}) // false Copy
eq(5)(5) // trueeq(5)(6) // falseeq({})({}) // false
Generated using TypeDoc
Checks equality between two values of type T using strict equality.