Roma P.
Roma P.
I propose adding the following section to the specification: ------------------ Any value may have a reference to a canonical module that works with values of that value's type. The reference...
I have no idea what can be done in this area yet, but wanted to open an issue for general discussion on the topic. Some relevant links: https://github.com/donnut/typescript-ramda/ https://github.com/facebook/flow/issues/172
We'll probably need to change spec over time. So we can end up in a situation where two libs use different spec versions and can't be used together. We should...
... so properties will not store potentially outdated current value. This was originally suggested by @raimohanska here https://github.com/baconjs/bacon.js/issues/536#issuecomment-72805294
As noted in #124 and #123 we currently have a bad situation with useful error messages and input checks in general. I like very much how this is done in...
Creating this issue to investigate how we could make Kefir compatible with the [Fantasy Land Specification](https://github.com/fantasyland/fantasy-land). I think of two possibilities: add Fantasy Land methods directly into Kefir, or create...
Sometimes we need to convert property to stream but preserve current value (as much as a stream can do it — passing current value only to the first subscriber). Opening...
As [mentioned in the docs](http://rpominov.github.io/kefir/#current-in-streams) both stream and properties may emit current\* values/errors. And while streams has no special treatment for current events, properties treat them specially: When a property...
I didn't want to add this complication to the code base, since setTimeout worked fine for us, and we've figured out how to mock it in the tests. But after...
We have number of places where some behavior defined by "latest/previous value" of some observable. For instance in `.combine` you get **latest values** of all sources in combinator function, or...