File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ const sleep = async ( millis ) => {
2
+ return new Promise ( ( resolve ) => {
3
+ setTimeout ( resolve , millis )
4
+ } )
5
+ }
Original file line number Diff line number Diff line change 11
11
| Apply Transform Over Each Element in Array | ✅ |
12
12
| Filter Elements from Array | ✅ |
13
13
| Array Reduce Transformation | ✅ |
14
- | Function Composition | |
15
- | Return Length of Arguments Passed | |
14
+ | Function Composition | ✅ |
15
+ | Return Length of Arguments Passed | ✅ |
16
16
| Allow One Function Call | |
17
17
| Memoize | |
18
18
| Add Two Promises | |
23
23
| Cache With Time Limit | |
24
24
| Debounce | |
25
25
| Execute Asynchronous Functions in Parallel | |
26
- | Is Object Empty | |
26
+ | Is Object Empty | ✅ |
27
27
| Chunk Array | |
28
28
| Array Prototype Last | |
29
29
| Group By | |
You can’t perform that action at this time.
0 commit comments