Skip to content

Commit 2fa7c8d

Browse files
authored
docs(README.md): update support table
1 parent 69c5265 commit 2fa7c8d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

β€ŽREADME.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ npx jscodeshift -t asyncify/index.js path/to/your/project/**/*.js
1919

2020
## Support table
2121

22-
| | `asyncify` | `async-await-codemod` |
23-
| ------------------------------------------------------------------ | ---------- | --------------------- |
24-
| Renames identifiers in handlers that would conflict | βœ… | 🚫 |
25-
| Converts promise chains that aren't returned/awaited into IIAAFs | βœ… | 🚫 |
26-
| Converts `return Promise.resolve()`/`return Promise.reject()` | βœ… | 🚫 |
27-
| Warns when the original function could return/throw a non-promise | βœ… | 🚫 |
28-
| **Refactoring/inlining handlers that contain conditional returns** | | |
29-
| All but one if/else/switch branch return | βœ… | 🚫 |
30-
| All branches return, even nested ones | βœ… | ❓(I don't think so?) |
31-
| All but one nested if/else/switch branch return | 🚫 | 🚫 |
32-
| More than one if/else/switch branch doesn't return | 🚫 | 🚫 |
33-
| Return inside loop | 🚫 | 🚫 |
22+
| | `asyncify` |
23+
| ------------------------------------------------------------------ | ---------- |
24+
| Renames identifiers in handlers that would conflict | βœ… |
25+
| Converts promise chains that aren't returned/awaited into IIAAFs | βœ… |
26+
| Converts `return Promise.resolve()`/`return Promise.reject()` | βœ… |
27+
| Warns when the original function could return/throw a non-promise | βœ… |
28+
| **Refactoring/inlining handlers that contain conditional returns** | |
29+
| All but one if/else/switch branch return | βœ… |
30+
| All branches return, even nested ones | βœ… |
31+
| All but one nested if/else/switch branch return | 🚫 |
32+
| More than one if/else/switch branch doesn't return | 🚫 |
33+
| Return inside loop | 🚫 |

0 commit comments

Comments
Β (0)