跳至内容

oxc/no-async-await 限制

用途

不允许使用 async/await。

示例

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

参考

在 MIT 许可证下发布。