Comparer returns true if string representation of a and b are equal.
Use isEqualDefault to compare using === semantics
Uses toStringDefault to generate a string representation (via JSON.stringify).
Returns false if the ordering of fields is different, even though values are identical:
Comparer returns true if string representation of
a
andb
are equal. Use isEqualDefault to compare using === semantics UsestoStringDefault
to generate a string representation (viaJSON.stringify
).Returns false if the ordering of fields is different, even though values are identical:
Use isEqualValueIgnoreOrder to ignore order (with an overhead of additional processing).
Use isEqualValuePartial to partially match
b
againsta
.