外观
偏好在 then()/catch()/finally() 的 Promise 值阅读中使用 await
then()
catch()
finally()
await
可以看到 Async/await 语法更具可读性。
有关此规则的不正确代码示例
function foo() { hey.then((x) => {}); }
有关此规则的正确代码示例
async function hi() { await thing(); }