-
In RxJS, you can call `.subscribe()` on any `Observer`, including other `Subject`s for example. In callbag world, any callbag can be an observer as well, so it would make sense to add support for subs…
-
When we need tests for our code, we had used some **tricky** and **unsafe way**.
so, sometimes, our package had been published with so simple bug!
to prevent those situations, we'd better to write…
-
Following the _build it yourself_ philosophy of this library, I made my own lib of callbags.
Just a package.json with the dependencies I need and an index.js exporting them like the one in this proje…
-
From https://github.com/teohhanhui/callbag-rs/pull/1#issue-1091682936:
- [x] Some tests failing on Linux:
- https://github.com/teohhanhui/callbag-rs/runs/4661124395?check_suite_focus=true#st…
-
When a remembered source receives a value, that value is not emitted to late subscribers unless that source has already been subscribed to.
Perhaps this is the intended behavior, but to me this was…
bjnsn updated
3 years ago
-
**Edit:** Add a means of querying supported IDs from a callbag, remove redundant ID array.
Could there be a way to determine what IDs a callbag's talkback callee supports? It would work like this:
…
-
Given this test:
https://github.com/staltz/callbag-share/blob/d96748edec631800ec5e606018f519ccaeb8f766/test.js#L93-L203
If `sinkA` sends a pull asynchronously but immediately(*), then it can hap…
-
Here `CB` is an object with a bunch of functions on it. The `forEach` function has nothing to do arrays but gets flagged.
```js
import * as CB from "strict-callbag-basics";
CB.p…
-
```
import subscribe from 'callbag-subscribe';
import { useEffect, useState } from 'react';
export default function useCallbag(factory) {
const [state, setState] = useState();
useEffect(() …
-
`List` seems to not work with constant values.
### reproduction procedure
```
{x}} />
```
The code above doesn't work and results in an error (in the browser console)
```
callbag-jsx.v0.1.…