Equality Algorithm
The equality algorithm is an extensible and parameterized deep equality checker. It is used by all functions that check deep equality inside earl.
Algorithm
To determine the equality of two values the following checks are executed:
- If the second value is a Matcher and it...
- matches the first value, then the values are considered equal;
- doesn't match the first value, then the values are considered unequal.
- If any of the values is equal to one of it's ancestors (is a self-referencing object)...
- If the other value is equal to it's ancestor of the same distance (e.g. grandparent and grandparent), then the values are considered equal.
- Otherwise they are considered unequal.
- A category is determined for each value based on the rules of each category.
- If the values have different categories, then they are considered unequal.
- If the category is the same the values are compared according to rules of that category.
Additionally the algorithm takes the following options:
uniqueNaNs
- Considers twoNaN
values unequal, defaults tofalse
.minusZero
- Considers+0
and-0
unequal, defaults tofalse
.ignorePrototypes
- Considersnew Vector2(1, 2)
and{ x: 1, y: 2 }
equal, defaults tofalse
. This option is set totrue
when using.toLooseEqual
.compareErrorStack
- Compares the stack property ofError
instances, defaults tofalse
.
Categories
Primitive
A value belongs to the Primitive category if typeof value
returns any of the following:
"undefined"
"boolean"
"number"
"bigint"
"string"
"symbol"
"object"
, but only if the value isnull
The equality of values belonging to the Primitive category is determined in the following way:
- If both values are
NaN
anduniqueNaNs
is set tofalse
, then the values are considered equal. - If
minusZero
is set totrue
then0
is only considered equal to0
and-0
is only considered equal to-0
. - Otherwise it is determined by the
===
operator.
Function, Promise, WeakMap, WeakSet
A value belongs to the...
- Function category if
typeof value
returns"function"
. - Promise category if
value instanceof Promise
returnstrue
. - WeakMap category if
value instanceof WeakMap
returnstrue
. - WeakSet category if
value instanceof WeakSet
returnstrue
.
The equality of values belonging to those categories is determined by the ===
operator.
Array
A value belongs to the Array category if Array.isArray(value)
returns true
.
The equality of values belonging the the Array category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If the values have different
length
s, then they are considered unequal. - The objects are compared using recursive object equality.
Date, Number, Boolean
A value belongs to the...
- Date category if
value instanceof Date
returnstrue
. - Number category if
value instanceof Number
returnstrue
. - Boolean category if
value instanceof Boolean
returnstrue
.
The equality of values belonging to those categories is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If
value.valueOf()
returns different values, then they are considered unequal. - The objects are compared using recursive object equality.
String
A value belongs to the String category if value instanceof String
returns true
.
The equality of values belonging to the String category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If
value.valueOf()
returns different values, then they are considered unequal. - All number keys (e.g.
"1"
) are removed during recursive object equality check. - The objects are compared using recursive object equality.
RegExp
A value belongs to the RegExp category if value instanceof RegExp
returns true
.
The equality of values belonging to the RegExp category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If
value.toString()
returns different values, then they are considered unequal. - The objects are compared using recursive object equality.
Error
A value belongs to the Error category if value instanceof Error
returns true
.
The equality of values belonging to the Error category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If
compareErrorStack
is set tofalse
then the"stack"
key is removed during recursive object equality check. - If
compareErrorStack
is set totrue
then the"stack"
key is added during recursive object equality check. - The
"name"
and"message"
keys are added during recursive object equality check. - The objects are compared using recursive object equality.
Set
A value belongs to the Set category if value instanceof Set
returns true
.
The equality of values belonging to the Set category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If the values have different
size
s, then they are considered unequal. - If
.has
returnsfalse
for any contained value of the other set, then they are considered unequal. - The objects are compared using recursive object equality.
Map
A value belongs to the Map category if value instanceof Map
returns true
.
The equality of values belonging to the Map category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - If the values have different
size
s, then they are considered unequal - If
.has
returnsfalse
for any map key of the other map, then they are considered unequal. - The values of the objects are compared using the Equality Algorithm. The objects are considered unequal if any of their values are considered unequal.
- The objects are compared using recursive object equality.
Object
A value belongs to the Object category if it doesn't belong to any other category.
The equality of values belonging to the Object category is determined in the following way:
- If
ignorePrototypes
is set tofalse
and the values have different prototypes, then they are considered unequal. - The objects are compared using recursive object equality.
Recursive object equality
When comparing objects recursively first an array of property keys is obtained using Object.keys
:
- If the category specifies keys to be added to this array they are only added if they are present on the object as determined by the
in
operator. - If the category specifies keys to be removed from this array then they are only removed if they are already present in the array.
- The keys of both objects are then sorted and compared. If the number of keys or any of the keys is different then the objects are considered unequal.
After comparing the keys the properties at those keys are compared using the Equality Algorithm. The objects are considered equal if and only if all of their properties are considered equal.