From 518e47e0d82f424545cdb2d9d8ae48aa76e43f74 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 24 Nov 2023 02:18:53 +1300 Subject: [PATCH] Undo indentation Signed-off-by: Richie Bendall --- test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test.js b/test.js index 778a302..ab8bf28 100644 --- a/test.js +++ b/test.js @@ -76,9 +76,9 @@ class ThrowingIterator { index++; this.index = index; } - // eslint is wrong - bind is needed else the next() call cannot update - // this.index, which we need to track how many times the iterator was called - // eslint-disable-next-line no-extra-bind + // eslint is wrong - bind is needed else the next() call cannot update + // this.index, which we need to track how many times the iterator was called + // eslint-disable-next-line no-extra-bind }).bind(this), }; }