Skip to content

oxc/no-async-await Restriction ​

What it does ​

Disallows the use of async/await.

Example ​

javascript
async function foo() {
  await bar();
  return baz();
}

References ​

Released under the MIT License.