[Iterator helpers](https://github.com/tc39/proposal-iterator-helpers) advanced to stage 3 today. As discussed in plenary, we would like the R&T proposal to add support for tuples to these 4 methods: * `Iterator.from` * `AsyncIterator.from` * `Iterator.prototype.flatMap` * `AsyncIterator.prototype.flatMap` This should be pretty easy to do by just modifying [`GetIteratorFlattenable`](https://tc39.es/proposal-iterator-helpers/#sec-getiteratorflattenable) which is shared between all of them.
Iterator helpers advanced to stage 3 today. As discussed in plenary, we would like the R&T proposal to add support for tuples to these 4 methods:
Iterator.fromAsyncIterator.fromIterator.prototype.flatMapAsyncIterator.prototype.flatMapThis should be pretty easy to do by just modifying
GetIteratorFlattenablewhich is shared between all of them.