<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
<script>
function deepEquals(x, y, exceptionName) {
if (x === y) {
return true; // if both x and y are null or undefined and exactly the same
}
else if (!(x instanceof Object) || !(y instanceof Object)) {
return false; // if they are not strictly equal, they both need to be Objects
}
else if (x.constructor !== y.constructor) {
// they must have the exact same prototype chain, the closest we can do is
// test their constructor.
return false;
}
else {
for (const p in x) {
if (!x.hasOwnProperty(p)) {
continue; // other properties were tested using x.constructor === y.constructor
}
if (!y.hasOwnProperty(p)) {
return false; // allows to compare x[ p ] and y[ p ] when set to undefined
}
if (x[p] === y[p] || (!!exceptionName && p === exceptionName)) {
continue; // if they have the same strict value or identity then they are equal
}
if (typeof x[p] !== 'object') {
return false; // Numbers, Strings, Functions, Booleans must be strictly equal
}
if (!deepEquals(x[p], y[p])) {
return false;
}
}
for (const p in y) {
if (y.hasOwnProperty(p) && !x.hasOwnProperty(p)) {
return false;
}
}
return true;
}
}
</script>
// 1 level deep
window.foo1 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar1 = { a: 1, b: 3, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
// 2 levels deep
window.foo2 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar2 = { a: 1, b: 2, c: { a: 1, b: 3, c: { a: 1, b: 2 } } };
// 3 levels deep
window.foo3 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 2 } } };
window.bar3 = { a: 1, b: 2, c: { a: 1, b: 2, c: { a: 1, b: 4 } } };
_.isEqual(window.foo1, window.bar1)
deepEquals(window.foo1, window.bar1);
_.isEqual(window.foo2, window.bar2)
deepEquals(window.foo2, window.bar2);
_.isEqual(window.foo3, window.bar3)
deepEquals(window.foo3, window.bar3);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.isEqual Level 1 | |
deepEquals Level 1 | |
_.isEqual Level 2 | |
deepEquals Level 2 | |
_.isEqual Level 3 | |
deepEquals Level 3 |
Test name | Executions per second |
---|---|
_.isEqual Level 1 | 1903567.0 Ops/sec |
deepEquals Level 1 | 5662413.5 Ops/sec |
_.isEqual Level 2 | 1222174.5 Ops/sec |
deepEquals Level 2 | 4843581.0 Ops/sec |
_.isEqual Level 3 | 925508.5 Ops/sec |
deepEquals Level 3 | 4239851.5 Ops/sec |
Benchmark Overview
The provided JSON represents a JavaScript benchmark test, specifically testing the performance of the _.isEqual
function from Lodash and a custom implementation called deepEquals
. The benchmark measures how fast each function can compare two objects.
Test Cases
There are four test cases:
window.foo1
with window.bar1
.deepEquals
to compare window.foo1
with window.bar1
.window.foo2
with window.bar2
.deepEquals
to compare window.foo2
with window.bar2
.Custom Implementation: deepEquals
The custom implementation deepEquals
is used in test cases 1 and 2. This function recursively compares two objects using the following approach:
deepEquals
on nested objects.Lodash Implementation: _.isEqual
The Lodash implementation _.isEqual
is used in test cases 3 and 4. This function uses a similar approach to deepEquals
, but with some additional optimizations:
Benchmark Results
The latest benchmark results show that the custom implementation deepEquals
is faster than Lodash's _isEqual
function for all test cases. The exact execution rates vary across different browsers and devices, but overall, deepEquals
outperforms _isEqual
.
Here are some possible reasons why deepEquals
might be faster:
deepEquals
might execute slightly faster.deepEquals
might require less memory than _isEqual
, especially when dealing with large objects.However, it's essential to note that these results are highly dependent on the specific test cases, browser versions, and device configurations used. In general, using established libraries like Lodash can be beneficial due to their rigorous testing, performance optimization, and maintainability.
To summarize:
_.isEqual
from Lodash is a well-tested and optimized implementation for comparing objects.deepEquals
provides an alternative approach with potential advantages in specific scenarios.deepEquals
outperforms _isEqual_
but should be evaluated based on the specific requirements of your project.