<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.15/lodash.min.js"></script>
function equal(a, b) {
if (a === b) return true;
if (a && b && typeof a == 'object' && typeof b == 'object') {
if (a.constructor !== b.constructor) return false;
var length, i, keys;
if (Array.isArray(a)) {
length = a.length;
if (length != b.length) return false;
for (i = length; i-- !== 0;)
if (!equal(a[i], b[i])) return false;
return true;
}
if (a.constructor === RegExp) return a.source === b.source && a.flags === b.flags;
if (a.valueOf !== Object.prototype.valueOf) return a.valueOf() === b.valueOf();
if (a.toString !== Object.prototype.toString) return a.toString() === b.toString();
keys = Object.keys(a);
length = keys.length;
if (length !== Object.keys(b).length) return false;
for (i = length; i-- !== 0;)
if (!Object.prototype.hasOwnProperty.call(b, keys[i])) return false;
for (i = length; i-- !== 0;) {
var key = keys[i];
if (key === '_owner' && a.$$typeof) {
// React-specific: avoid traversing React elements' _owner.
// _owner contains circular references
// and is not needed when comparing the actual elements (and not their owners)
continue;
}
if (!equal(a[key], b[key])) return false;
}
return true;
}
// true if both NaN, false otherwise
return a!==a && b!==b;
};
// 1 level deep
window.foo1 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
window.bar1 = { a: 'test2', b: 3, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
// 2 levels deep
window.foo2 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
window.bar2 = { a: 'test1', b: 2, c: { a: 'test2', b: 3, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
// 3 levels deep
window.foo3 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
window.bar3 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test2', b: 4, c: ['a', 'b', 'c'] } } };
// 3 levels deep
window.foo3 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
window.bar3 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test2', b: 4, c: ['a', 'b', 'c'] } } };
// 3 levels deep (array)
window.foo4 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'] } } };
window.bar4 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test2', b: 4, c: ['a', 'b', 'd'] } } };
// 10 levels deep (array)
window.foo5 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'] } } } } } } } } } };
window.bar5 = { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: { a: 'test1', b: 2, c: ['a', 'b', 'c'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'd'], d: { a: 'test1', b: 4, c: ['a', 'b', 'e'] } } } } } } } } } };
console.log('Preparing...');
console.log('1 level deep: ', _.isEqual(window.foo1, window.bar1) === equal(window.foo1, window.bar1));
console.log('2 level deep: ', _.isEqual(window.foo2, window.bar2) === equal(window.foo2, window.bar2));
console.log('3 level deep: ', _.isEqual(window.foo3, window.bar3) === equal(window.foo3, window.bar3));
console.log('3 level deep (array): ', _.isEqual(window.foo4, window.bar4) === equal(window.foo4, window.bar4));
console.log('10 level deep (array): ', _.isEqual(window.foo5, window.bar5) === equal(window.foo5, window.bar5));
_.isEqual(window.foo1, window.bar1)
equal(window.foo1, window.bar1)
_.isEqual(window.foo2, window.bar2)
equal(window.foo2, window.bar2)
_.isEqual(window.foo3, window.bar3)
equal(window.foo3, window.bar3)
_.isEqual(window.foo4, window.bar4)
equal(window.foo4, window.bar4)
_.isEqual(window.foo5, window.bar5)
equal(window.foo5, window.bar5)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
_.isEqual Level 1 | |
equal Level 1 | |
_.isEqual Level 2 | |
equal Level 2 | |
_.isEqual Level 3 | |
equal Level 3 | |
_.isEqual Level 3 (array) | |
equal Level 3 (array) | |
_.isEqual Level 10 (array) | |
equal Level 10 (array) |
Test name | Executions per second |
---|---|
_.isEqual Level 1 | 3447373.2 Ops/sec |
equal Level 1 | 4039849.8 Ops/sec |
_.isEqual Level 2 | 1676236.0 Ops/sec |
equal Level 2 | 4631751.0 Ops/sec |
_.isEqual Level 3 | 1106655.4 Ops/sec |
equal Level 3 | 5339956.5 Ops/sec |
_.isEqual Level 3 (array) | 1111382.9 Ops/sec |
equal Level 3 (array) | 6168427.5 Ops/sec |
_.isEqual Level 10 (array) | 234390.5 Ops/sec |
equal Level 10 (array) | 1766750.0 Ops/sec |
It looks like you're sharing a JSON-formatted string of data! Let me help you parse it.
This appears to be a list of test results, with each item representing a single execution of an equality test (e.g., _.isEqual
, equal
). Here are the key details:
The data is organized into several levels, with each level corresponding to a specific test name (e.g., _.isEqual Level 2
, equal Level 3
).
Is there something specific you'd like me to help you extract or analyze from this data?