Skip to content

Commit 356004f

Browse files
committed
Fix ESLint
1 parent 5ce745c commit 356004f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/base/src/utils/iterateEquals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
// eslint-disable-next-line no-magic-numbers
12
const MAX_ITERATION = 1_000_000;
23

34
export default function iterateEquals<T>(x: Iterable<T>, y: Iterable<T>): boolean {
45
const xIterator = x[Symbol.iterator]();
56
const yIterator = y[Symbol.iterator]();
67

7-
// eslint-disable-next-line no-magic-numbers
88
for (let count = 0; count < MAX_ITERATION; count++) {
99
const resultX = xIterator.next();
1010
const resultY = yIterator.next();

0 commit comments

Comments
 (0)