(isEquivalent: (self: A, that: A) => boolean)
| 29 | * @since 2.0.0 |
| 30 | */ |
| 31 | export const make = <A>(isEquivalent: (self: A, that: A) => boolean): Equivalence<A> => (self: A, that: A): boolean => |
| 32 | self === that || isEquivalent(self, that) |
| 33 | |
| 34 | const isStrictEquivalent = (x: unknown, y: unknown) => x === y |
| 35 |
no outgoing calls
no test coverage detected