-
A `.toPromise([PromiseCtr])` method on observables is something I find myself reaching for often and would be a sensible corollary to `Kefir.fromPromise(promise)`.
I figure it should be consistent wi…
Macil updated
9 years ago
-
I have encountered a behaviour as demonstrated by the gist at https://gist.github.com/anonymous/b053aa54750db5c5fd01 which uses fromArray(arr) zipped with repeatedly(0, arr) and causes the Mocha test …
-
Hi, i discovered Kefir today and tried in some projects to check the performance improvement and its amazing.
But i have a problem, buffer a stream for a period of time is a common task in my project,…
-
Should I unbind jquery event or stop the stream observation on context destruction? Can be a stream created with asKefirStream function unbound manually?
... or https://github.com/pozadi/kefir/blob/ma…
-
This is my first time working with the library, so I could be wrong, but I'm having issues with concat.
I created this code that deals 24 cards into 4 hands, and then I concat the hands but it doesn't…
-
I've tried many things but I can't seem to be able to introduce an error into a stream.
For example, if I get a weird value in a stream that I want to handle up the stream, I'd like to create an erro…
-
I'm trying to create a stream to read file contents using _fs.readFile_. In BaconJS, I can achieve this by -
``` javascript
var readStream = Bacon.fromNodeCallback(fs.readFile, 'somefile.txt');
rea…
-
Currently, the behavior of pool/bus is to plug in _all_ observables, regardless of whether the instance was previously added or not:
``` js
var pool = Kefir.pool().log()
var obs = Kefir.emitter()
poo…
-
Is there in Kefir an equivalente to [Rx's switch](http://reactivex.io/documentation/operators/switch.html)? I couldn't find from the docs. The closest one was flatten, but seems to be for arrays only.…
-
In the current version, `subscribe` returns a cancellation function. Previously, `subscribe` returned a "subscription" object with an "unsubscribe" method.
Rationale:
1. Since working on this projec…