-
I would like to propose a new stream called `collect` for the https://github.com/cujojs/most/blob/master/docs/api.md#consuming-streams category.
It would be sugar for:
``` js
stream.from([ 'apple', …
-
I am new to this stuff so take any suggestions with a grain of salt. I have noticed that skipDuplicates is implemented like:
``` javascript
withOneSource('skipDuplicates', {
_init: function(args) {…
-
Any thoughts of creating a `fromPromise` to support event streams for promise objects?
-
I understand there is some inspiration from Baconjs.
Is there an interest to implement the "fromNodeCallback" method, so nodejs projects can integrate it with nodejs style async methods?
Looking at …
-
Kefir releases Zalgo. See here for why that is bad: https://github.com/oren/oren.github.io/blob/master/posts/zalgo.md
This test case demonstrates the problem:
``` js
var s = kefir.fromBinder(functio…
-
Awesome library you got going here. I haven't actually used it but i'm planning to. I have a couple of questions that i'm unsure about:
I saw your new [blog post](http://simplectic.com/blog/2015/ramd…
-
NYA Combines. Looks like good idea!
-
Is there a way to do something like the following?
```
var x = Kefir.constant(1);
var y = Kefir.never();
Kefir.isProperty(x); // returns: true
Kefir.isStream(y); // returns true
Kefir.isProperty(y…
-
transducers.js is pretty slick. I'd like to see a way to provoke lazy evaluation of ramda compositions, e.g.:
`R.compose(R.filter(someFn), R.map(someOtherFn), R.lazily)`
... where lazily would chang…
-
Would really appreciate some instructions on how to obtain results just like those in [whyrx.md](https://github.com/Reactive-Extensions/RxJS/blob/master/doc/mapping/bacon.js/whyrx.md) to be able to co…