`await null` to stay in the same tick?

Kris Kowal kris.kowal at cixar.com
Sun Feb 7 21:51:57 UTC 2016


Await yields to the event loop unconditionally. This is useful for
spreading CPU-bound work across multiple events. You can explicitly await
conditionally.

```
if (guard) { await guard; }
```

On Sun, Feb 7, 2016 at 1:39 PM /#!/JoePea <joe at trusktr.io> wrote:

> I'm not sure where's the best place to ask, but if I
>
> ```
> await null
> ```
>
> in an async function does that guarantee that the following code will
> execute immediately (control flow will not go anywhere else)?
>
> - Joe
> _______________________________________________
> es-discuss mailing list
> es-discuss at mozilla.org
> https://mail.mozilla.org/listinfo/es-discuss
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20160207/533254fa/attachment.html>


More information about the es-discuss mailing list