wonka icon indicating copy to clipboard operation
wonka copied to clipboard

🎩 A tiny but capable push & pull stream library for TypeScript and Flow

Results 12 wonka issues
Sort by recently updated
recently updated
newest added

I'm running wonka within my application, and occasionally this error pops up and crashes my app running locally: ``` ////node_modules/wonka/dist/wonka.js:608 c.forEach(function (c) { ^ TypeError: a is not a function...

Is it possible to convert the observable to an **rxjs** observable? This would be the desired behavior from an **urql** subscription: ```typescript const sub = pipe( this.client.subscription(q), toObservable ); sub.subscribe((r:...

Newer versions of Node.js, starting at least with `12.19` throw an error about "./src/Wonka.bs.js" not being exported by the package when using Wonka from Reason. This change exports the compiled...

Some of the newest versions of NPM require the package.json's `exports` to include `wonka.bs.js` . Sorry, I'm not providing a lot of detail right now, just wanted to write this...

I have been using a pipe from the subscriptions and in subscription, I need to execute some async operation that should lock the handling from other subscriptions. Basically I do...

Related to #75. This PR aims at adding a **makeReplaySubject** source. Please note that replay subjects should replay values even after completion

This should act as a subject, with the addition of emitting **immediately** old values to new subscribers, in FIFO order. The api could look like: ```reason let makeReplaySubject: (bufferSize: int)...

This should be able to filter out values when they're not distinct. Instead of just using reference equality there could be an `isDistinct` predicate function input. So the default usage...

There are certain cases where sinks don't consume push signals as fast as they're sent. This can often happen with an asynchronous source that is fed through a delay or...

hello there! 👋 I have been waiting for the next Wonka release for a long time, and I'm happy to see v6! Although, I'm a bit concerned about missing new...