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.
1 parent 5f8f83b commit 013947bCopy full SHA for 013947b
packages/ts-transformers/src/closures/transformer.ts
@@ -1199,7 +1199,9 @@ function transformMapCallback(
1199
if (!baseName) continue;
1200
1201
// Skip if an existing entry captures an equivalent expression
1202
- const existing = captureEntries.find((entry) => expressionsMatch(expr, entry.expr));
+ const existing = captureEntries.find((entry) =>
1203
+ expressionsMatch(expr, entry.expr)
1204
+ );
1205
if (existing) continue;
1206
1207
let candidate = baseName;
0 commit comments