Skip to content

Commit ebd7364

Browse files
committed
update solve problem to be or not to be
1 parent bb122e8 commit ebd7364

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

2727. is-object-empty copy/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const isEmpty = (obj) => {
2+
return Object.keys(obj).length === 0
3+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| :------------------------------------------- | :-------: |
77
| Create Hello World Function ||
88
| Counter | |
9-
| To Be Or Not To Be | |
9+
| To Be Or Not To Be | |
1010
| Counter II | |
1111
| Apply Transform Over Each Element in Array ||
1212
| Filter Elements from Array ||
@@ -23,7 +23,7 @@
2323
| Cache With Time Limit | |
2424
| Debounce | |
2525
| Execute Asynchronous Functions in Parallel | |
26-
| Is Object Empty | |
26+
| Is Object Empty | |
2727
| Chunk Array | |
2828
| Array Prototype Last | |
2929
| Group By | |

0 commit comments

Comments
 (0)