For documentation purposes, I recommend block-commenting the `async`:
const foo = /async/ () => new Promise(...);
> async function foo() { return "hello"; } foo().then(console.log); console.log("after")
after hello
For documentation purposes, I recommend block-commenting the `async`:
const foo = /async/ () => new Promise(...);