ipatalas / vscode-postfix-ts

Postfix notation for TypeScript/Javascript - extension for VS Code
MIT License
159 stars 43 forks source link

await'ed expression - wrong replacement #28

Closed ipatalas closed 4 years ago

ipatalas commented 4 years ago

Scenario: await func().const (const and pretty much all other templates)

Current outcome: await const name = func() Expected outcome: const name = await func()