File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ You are free to look at any of the tests for guidance, but don't change them.
26
26
27
27
These exercises are all about learning the mechanisms that we can use to create, transform, and combine promises.
28
28
29
- ` npm run making-promises ` - Create promises with Promise.resolve, Promise.reject, and the Promise constructor.
30
- ` npm run consuming-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to respond to a promise completing and do something with the result.
31
- ` npm run transforming-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to transform the results of async processes.
32
- ` npm run chaining-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to chain async processes.
29
+ * ` npm run making-promises ` - Create promises with Promise.resolve, Promise.reject, and the Promise constructor.
30
+ * ` npm run consuming-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to respond to a promise completing and do something with the result.
31
+ * ` npm run transforming-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to transform the results of async processes.
32
+ * ` npm run chaining-promises ` - Use ` .then(cb) ` and ` .catch(cb) ` to chain async processes.
33
33
34
34
### Promise Puzzles
35
35
36
36
Now it's time to use the tricks from above to solve some problems.
37
37
38
- ` npm run callbacks ` - Turn callback-centric functions into promise-centric functions.
38
+ * ` npm run callbacks ` - Turn callback-centric functions into promise-centric functions.
You can’t perform that action at this time.
0 commit comments