Computes structural equality between two JavaScript objects.
Handles only primitive types and JSON-style objects
(i.e. object whose constructor is Object).
To handle any other kind of objects, you need to make sure it inherits
from StructEqualityComparable and implement getFields()
for that object correctly.
Computes structural equality between two JavaScript objects. Handles only primitive types and JSON-style objects (i.e. object whose constructor is
Object
).To handle any other kind of objects, you need to make sure it inherits from
StructEqualityComparable
and implementgetFields()
for that object correctly.