build(deps-dev): apply updates
[benchmarks-js.git] / is-empty-object.mjs
index 2d788816db5f5fb3afdece0a6e34a0861c23e4c4..45ac8e3a44ced93a146913733292d3e1c1ac143b 100644 (file)
@@ -22,13 +22,13 @@ group(`Is empty object with ${Object.keys(object).length} keys`, () => {
     return obj?.constructor === Object && Object.keys(obj).length === 0
   })
   bench('lodash isEmpty', (obj = object) => {
-    return _.isEmpty(obj)
+    _.isEmpty(obj)
   })
   bench('rambda isEmpty', (obj = object) => {
-    return isEmpty(obj)
+    isEmpty(obj)
   })
 })
 
 await run({
-  units: true
+  units: true,
 })