refactor: cleanups
[benchmarks-js.git] / is-empty-object.mjs
index bc7faf9610011ba114819e7dfa0f000a0520f768..0159aca8364cf3e53a0f2523ae8cd69fcb979f9f 100644 (file)
@@ -24,7 +24,7 @@ group(`Is empty object with ${Object.keys(object).length} keys`, () => {
   bench('lodash isEmpty', (obj = object) => {
     return _.isEmpty(obj)
   })
-  bench('rambda is Empty', (obj = object) => {
+  bench('rambda isEmpty', (obj = object) => {
     return isEmpty(obj)
   })
 })