Disallow redundant typecasts. (#15030)

This commit is contained in:
Christian Gunderman
2025-12-12 17:43:43 -08:00
committed by GitHub
parent fcc3b2b5ec
commit 942bcfc61e
86 changed files with 235 additions and 371 deletions

View File

@@ -59,7 +59,7 @@ function findLastIndex<T>(
predicate: (value: T, index: number, obj: T[]) => unknown,
): number {
for (let i = array.length - 1; i >= 0; i--) {
if (predicate(array[i]!, i, array)) {
if (predicate(array[i], i, array)) {
return i;
}
}
@@ -192,7 +192,7 @@ function VirtualizedList<T>(
return { index: 0, offset: 0 };
}
return { index, offset: scrollTop - offsets[index]! };
return { index, offset: scrollTop - offsets[index] };
},
[],
);