Comment on Async/await support in FirefoxparentComments−namuol9yIt's explicit, since the `async` keyword must only precede a function declaration.i.e.: async function () { ... } // or async () => { ... }−foota9yI believe they are discussing at the call site of an asynchronous function
Comments
It's explicit, since the `async` keyword must only precede a function declaration.
i.e.:
I believe they are discussing at the call site of an asynchronous function