Refine a bit eslint configuration
[benchmarks-js.git] / promise-handling.js
index 182ba772bef44b6c60ced6f74e6e1d79a15920ec..03a78e282d1d983d743dd12da207bdeae1b75b96 100644 (file)
@@ -3,10 +3,16 @@ const { LIST_FORMATTER } = require('./benchmark-utils')
 
 const suite = new Benchmark.Suite()
 
+/**
+ *
+ */
 function promise () {
   return new Promise()
 }
 
+/**
+ *
+ */
 async function asyncFunction () {
   await promise()
 }