refactor: cleanups
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 29 Mar 2024 17:21:35 +0000 (18:21 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 29 Mar 2024 17:21:35 +0000 (18:21 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
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)
   })
 })