egoist / egoist/babel-plugin-sync
Syncify a property name
Open
- Dominant language
- JavaScript
- Stars
- 12
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Actual:
```js
if (foo) {
await foo()
}
// ⬇️⬇️⬇️
if (foo) {
fooSync()
}
```
Expected:
```js
if (foo /* $SyncName */) {
await foo()
}
// ⬇️⬇️⬇️
if (fooSync) {
fooSync()
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.