Kirill Agalakov

Results 47 issues of Kirill Agalakov

Currently I'm trying to rewrite `themr` in TS to provide consistent up-to-date typings and I'm in the middle of the struggle started in #39 The problem is that switching from...

Draft for performance benchmarking app. TODO: - [ ] Update test to not copy/paste code from `reatom` (@artalar) - [x] Add push test for `reatom` - [ ] Add more...

The PR add a `go` function (similar to https://github.com/funkia/hareactive#momentaf-sample-bb-behaviorb--b--a-behaviora) that allows lazy evaluation/subscription for conditional logic inside projection functions. Main benefit of such approach is performance. However, the use case...

As mentioned in https://github.com/raveclassic/frp-ts/issues/29 we need to clearly describe why `Property`/`Atom` filter out duplicates by default.

documentation

Hi, Currently `chain` is implemented using `mergeMap` which is known to not unsubscribe from the passed observable on source emit. It's recommended to use `switchMap` in such cases. Is `mergeMap`...