refactor: cleanup promises handling code
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 4 Dec 2023 12:40:48 +0000 (13:40 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 4 Dec 2023 12:40:48 +0000 (13:40 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
14 files changed:
busy-wait.mjs
deep-clone-object.mjs
deep-merge-object.mjs
empty-array.mjs
fibonacci.mjs
is-empty-object.mjs
is-undefined.mjs
max.mjs
min.mjs
promise-handling.mjs
quick-select.mjs
random.mjs
shallow-clone-object.mjs
uuid-generator.mjs

index 5a55ef82ef85164839bc476d84c631b4f03eb720..eeef8fed05b791d348218e6d5971dea0da6c64d7 100644 (file)
@@ -77,6 +77,4 @@ Benchmark.suite(
   Benchmark.save({ file: 'busy-wait', format: 'json', details: true }),
   Benchmark.save({ file: 'busy-wait', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'busy-wait', format: 'table.html', details: true })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 8206cd9948a0997160f7986193939d74ca001e7a..bd8b3e6326a1df4db1f5671a6d1db2d27f8f4140 100644 (file)
@@ -41,6 +41,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index cce9345231259cf281c95c35d718178c59436048..fe1440f91b9e82123801ed33b2e491d65b5568fc 100644 (file)
@@ -38,6 +38,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 12abb24b002080efea1ab068a414a16080ec5f52..3c46e35ddbfc664210da5fa370b0e3fd9faa595a 100644 (file)
@@ -30,6 +30,4 @@ Benchmark.suite(
   Benchmark.save({ file: 'empty-array', format: 'json', details: true }),
   Benchmark.save({ file: 'empty-array', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'empty-array', format: 'table.html', details: true })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 00130ce0709a7e33a6abb23ba24bbed6fcfcbb8b..3929b4d01cafe311f7ee768ae8a98ee2a8d09901 100644 (file)
@@ -76,6 +76,4 @@ Benchmark.suite(
   Benchmark.save({ file: 'fibonacci', format: 'json', details: true }),
   Benchmark.save({ file: 'fibonacci', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'fibonacci', format: 'table.html', details: true })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index b4ba3cbb8f8faa8a4fbe61d930b29618c03513b3..e9b42f7562800827898d3a17d4c1169e32069343 100644 (file)
@@ -36,6 +36,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index a04113b881ac45a17a638c24ab1dd0d401fb5650..b720507111561c7b5337ca88aec132c5c692ee9f 100644 (file)
@@ -25,6 +25,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
diff --git a/max.mjs b/max.mjs
index 60fcdeac0764ba2016cd71050b94e27f228499f3..0b1ec9f93528bed64c39bf82435a689223d2f3f7 100644 (file)
--- a/max.mjs
+++ b/max.mjs
@@ -69,6 +69,4 @@ Benchmark.suite(
   Benchmark.save({ file: 'max', format: 'json', details: true }),
   Benchmark.save({ file: 'max', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'max', format: 'table.html', details: true })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
diff --git a/min.mjs b/min.mjs
index 25618206a0e12514dbb665a2f468654d3ac34205..834076c94423f9e55e65e045d5721311272f21b8 100644 (file)
--- a/min.mjs
+++ b/min.mjs
@@ -69,6 +69,4 @@ Benchmark.suite(
   Benchmark.save({ file: 'min', format: 'json', details: true }),
   Benchmark.save({ file: 'min', format: 'chart.html', details: true }),
   Benchmark.save({ file: 'min', format: 'table.html', details: true })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 7f450b3fc53c58f3e93abd821b6490ba7519d260..1624bc2d18224946d95738bb0c2dac41109040bc 100644 (file)
@@ -23,9 +23,7 @@ Benchmark.suite(
       .then(r => {
         return r
       })
-      .catch(e => {
-        console.error(e)
-      })
+      .catch(console.error)
   }),
   Benchmark.add('voided promise', () => {
     // eslint-disable-next-line no-void
@@ -51,6 +49,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 6e5706db4b9be9400a223f975eadf42bcf623ba0..efbb9b7238800f893ac03a1df5e6d177fe17981a 100644 (file)
@@ -264,6 +264,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 70d48c0a53fbf6084db9481a12e9dee865fb969e..16037df91dff6aaaa47880b1247be00525161878 100644 (file)
@@ -100,6 +100,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 830a3862f3c1e3712cf9ed56a2a296dab49a963e..51ee172b499c830b66772a19942d3005fb684c2f 100644 (file)
@@ -33,6 +33,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)
index 6ed8015648ed52a37e45bb56bcb5250c36a1acb9..325abcb8f2b42f1678d801d1cb830a2587e98cf5 100644 (file)
@@ -27,6 +27,4 @@ Benchmark.suite(
     format: 'table.html',
     details: true
   })
-).catch(err => {
-  console.error(err)
-})
+).catch(console.error)