Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Asynchronous iteration #53

@honzabrecka

Description

@honzabrecka

Any plans to add support for http://2ality.com/2016/10/asynchronous-iteration.html ?

For example map's async counterpart:

rewrapPrototypeAndStatic("mapAsync", async function* (fn) {
  for await (const x of this) {
    yield fn(x);
  }
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions