HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
2
<script>
3
  
4
  function deepEquals(x, y, exceptionName) {
5
    if (x === y) {
6
        return true; // if both x and y are null or undefined and exactly the same
7
    }
8
    else if (!(x instanceof Object) || !(y instanceof Object)) {
9
        return false; // if they are not strictly equal, they both need to be Objects
10
    }
11
    else if (x.constructor !== y.constructor) {
12
        // they must have the exact same prototype chain, the closest we can do is
13
        // test their constructor.
14
        return false;
15
    }
16
    else {
17
        for (const p in x) {
18
            if (!x.hasOwnProperty(p)) {
19
                continue; // other properties were tested using x.constructor === y.constructor
20
            }
21
            if (!y.hasOwnProperty(p)) {
22
                return false; // allows to compare x[ p ] and y[ p ] when set to undefined
23
            }
24
            if (x[p] === y[p] || (!!exceptionName && p === exceptionName)) {
25
                continue; // if they have the same strict value or identity then they are equal
26
            }
27
            if (typeof x[p] !== 'object') {
28
                return false; // Numbers, Strings, Functions, Booleans must be strictly equal
29
            }
30
            if (!deepEquals(x[p], y[p])) {
31
                return false;
32
            }
33
        }
34
        for (const p in y) {
35
            if (y.hasOwnProperty(p) && !x.hasOwnProperty(p)) {
36
                return false;
37
            }
38
        }
39
        return true;
40
    }
41
}
42
</script>
Script Preparation code:
x
 
// 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 } } };
Tests:
  • _.isEqual Level 1

     
    _.isEqual(window.foo1, window.bar1)
  • deepEquals Level 1

     
    deepEquals(window.foo1, window.bar1);
  • _.isEqual Level 2

     
    _.isEqual(window.foo2, window.bar2)
  • deepEquals Level 2

     
    deepEquals(window.foo2, window.bar2);
  • _.isEqual Level 3

     
    _.isEqual(window.foo3, window.bar3)
  • deepEquals Level 3

     
    deepEquals(window.foo3, window.bar3);
  • native equals

     
    window.foo3 === window.bar3
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    _.isEqual Level 1
    deepEquals Level 1
    _.isEqual Level 2
    deepEquals Level 2
    _.isEqual Level 3
    deepEquals Level 3
    native equals

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 11 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
Chrome 124 on Windows
View result in a separate tab
Test name Executions per second
_.isEqual Level 1 1275986.4 Ops/sec
deepEquals Level 1 3346476.5 Ops/sec
_.isEqual Level 2 829500.2 Ops/sec
deepEquals Level 2 2742466.5 Ops/sec
_.isEqual Level 3 621118.8 Ops/sec
deepEquals Level 3 2346973.2 Ops/sec
native equals 5631591.0 Ops/sec