We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb122e8 commit ebd7364Copy full SHA for ebd7364
2727. is-object-empty copy/index.js
@@ -0,0 +1,3 @@
1
+const isEmpty = (obj) => {
2
+ return Object.keys(obj).length === 0
3
+}
README.md
@@ -6,7 +6,7 @@
6
| :------------------------------------------- | :-------: |
7
| Create Hello World Function | ✅ |
8
| Counter | |
9
-| To Be Or Not To Be | |
+| To Be Or Not To Be | ✅ |
10
| Counter II | |
11
| Apply Transform Over Each Element in Array | ✅ |
12
| Filter Elements from Array | ✅ |
@@ -23,7 +23,7 @@
23
| Cache With Time Limit | |
24
| Debounce | |
25
| Execute Asynchronous Functions in Parallel | |
26
-| Is Object Empty | ✅ |
+| Is Object Empty | |
27
| Chunk Array | |
28
| Array Prototype Last | |
29
| Group By | |
0 commit comments