lighthouse 13.4.1-dev.20260820 → 13.4.1-dev.20260824

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -133,7 +133,7 @@ class TraceEngineResult {
133
133
  * @param {Set<object>} seen
134
134
  */
135
135
  function recursiveReplaceLocalizableStrings(obj, cb, seen) {
136
- if (seen.has(seen)) {
136
+ if (seen.has(obj)) {
137
137
  return;
138
138
  }
139
139
 
@@ -98,7 +98,7 @@ class TraceElements extends BaseGatherer {
98
98
  * @param {Set<object>} seen
99
99
  */
100
100
  function recursiveObjectEnumerate(obj, cb, seen) {
101
- if (seen.has(seen)) {
101
+ if (seen.has(obj)) {
102
102
  return;
103
103
  }
104
104
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "13.4.1-dev.20260820",
4
+ "version": "13.4.1-dev.20260824",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {