We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23d0f89 + 8c890da commit 08677aaCopy full SHA for 08677aa
site/static/compare.html
@@ -556,8 +556,11 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
556
return !f || (n.benchmark + "-" + n.profile).includes(f);
557
}).
558
reduce((accum, next) => {
559
- accum[next.benchmark + "-" + next.profile] ||= [];
560
- accum[next.benchmark + "-" + next.profile].push(next);
+ const key = next.benchmark + "-" + next.profile;
+ if (!accum[key]) {
561
+ accum[key] = [];
562
+ }
563
+ accum[key].push(next);
564
return accum;
565
}, {});
566
benches = Object.entries(benches).
0 commit comments