repeater icon indicating copy to clipboard operation
repeater copied to clipboard

The missing constructor for creating safe async iterators

Results 20 repeater issues
Sort by recently updated
recently updated
newest added

Hi, noticing in my tests that when i'm trying to use the stop promise in a call to Promise.race, it's not prioritising this promise even though it's clearly settled. I'm...

The yarn monorepo format is pain to deal with, is difficult to integrate with github/javascript/typescript tools and hasn’t really been useful in any meaningful way. I’ve twice accidentally published dependent...

3.0 was released last November and I’m itching to do some breaking changes. Here’s what I’m planning: 1. ~~**Move the combinator functions to their own module.**~~ EDIT: I’m starting to...

Wrote some code in #48 that was like: ```ts function map(iterable, fn) { return new Repeater(async (push, stop) => { const iter = iterable[Symbol.asyncIterator](); let finalIteration; stop.then(() => { finalIteration...

This is an idea for a new feature, either in Repeater or as a separate class in the same project. **The idea:** The object returned by `new Repeater()` should have...

enhancement

I think it would be handy to have array-like helper functions in the core or utils/helpers package. ```ts const numbersChannel = new Channel(() => {}); const oddNumbersChannel = filterChannel(numbersChannel, item...

enhancement

A few months ago I had to deal with large tree structures and started learning about stuff about Iteration and have been using it a lot since then (can't wait...

One of the kind of cool things about `zen-observable` is you can ```js new Observable(observer => { checkSomethingSynchronously() return someOtherObservable.subscribe(observer) }) ``` I'm looking for an elegant way to do...

I don't know if this causes problems in TS, but I noticed it because I'm trying to convert the defs to Flow, so I wanted to point it out. The...

👋 team, I am working on DocSearch. [We have an integration for Docusaurus](https://docusaurus.io/docs/en/search#enabling-the-search-bar). We thought it is a shame you can not also used this search that you can [find...