-
This suggestion may be more practical since kefir is all about composing functors, filters, and other transformations.
Transducers allow transformations to be pipelined so that no intermediate result…
-
@mattpodwysocki Do you plan implementing `fromTransduce` operator? I think this is a very useful library. In KefirJS this operator was implemented https://github.com/pozadi/kefir/blob/master/test/perf…
-
I've been learning about JS-CSP and in the process trying to discover how to use my document data in Firebase as a source for streams. The discovery process has lead me to something called RXJS, which…
-
Hi...I'm trying to build a minimal todo list, my first idea was build the todoList like an emitter, then use a newTodo emitter and sampledBy for join both emitter and update the list...
```
var _todo…
-
I am thinking of removing support of special form of callbacks ["array functions"](http://pozadi.github.io/kefir/#callbacks). It should simplify lib code and improve performance a bit.
Probably no one…
-
Hi!
UglifyJS doing a very good job mangling names of local variables, but I also want to mangle all properties starting with `_` character.
What is the easiest way to do that? I understand it proba…
-
Is it possible to get current value of Property?
Also, is there any way to check if Observable is Property?
It'll be very useful to have.
Just created very [simple extension](https://github.com/iofjuu…
-
Not sure why, this is the output. Seems it's trying to chmod a Windows-style path?
`enoent ENOENT: no such file or directory, chmod '/usr/local/lib/node_modules/editorconfig/bin\editorconfig'`
````…
-
Is there any functionality like Rx's .subscribe() or streams .pipe()? Essentially I want to be able to write Observables in a way that a consumer can compose them together easily.
-
Just curious if there is any use in building off the foundation of the excellent [immutable.js](https://github.com/facebook/immutable-js)? Would require an internal re-write to do this, but maybe ther…