Apply dependencies update
[benchmarks-js.git] / busy-wait.js
index 7c8273e76e94f734ecb5e69144c2271c10953c23..f2d10f3cd24f3d99d3a30d0c6fca6463991faf5f 100644 (file)
@@ -11,6 +11,7 @@ const interval = 1000
  */
 function dummyTimeoutBusyWait (timeoutMs) {
   const timeoutTimestampMs = Date.now() + timeoutMs
+  // eslint-disable-next-line no-empty
   do {} while (Date.now() < timeoutTimestampMs)
 }
 
@@ -75,7 +76,7 @@ suite
     console.log(
       'Fastest is ' + LIST_FORMATTER.format(this.filter('fastest').map('name'))
     )
-    // eslint-disable-next-line no-process-exit
+    // eslint-disable-next-line n/no-process-exit
     process.exit()
   })
   .run()