Return an async iterable
Open
- Dominant language
- TypeScript
- Stars
- 929
- Forks
- 27
- PR merge metrics
- No merged PRs in 30d
Description
This would give a "native" way to consume changes.
A possible example of usage...
```
import { withProps } from 'proppy';
const P = withProps({ counter: 1 });
const p = P();
for await (const value of p.subscribe()) {
console.log({ value });
}
```
Contributor guide
Assessment
This issue has not been assessed yet.