File tree Expand file tree Collapse file tree 5 files changed +7
-5
lines changed
Expand file tree Collapse file tree 5 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -192,10 +192,10 @@ function* exampleWithCloseValue() {
192192}
193193```
194194
195- ### Subject (like RxJS BehaviorSubject)
195+ ### Subject
196196
197- The ` createSubject ` helper converts any stream into a multicast stream that
198- replays the latest value to new subscribers. It's analogous to
197+ Subject helper converts any stream into a multicast stream that replays the
198+ latest value to new subscribers. It's analogous to
199199[ RxJS BehaviorSubject] ( https://www.learnrxjs.io/learn-rxjs/subjects/behaviorsubject ) .
200200
201201``` typescript
Original file line number Diff line number Diff line change 11{
22 "name" : " @effectionx/stream-helpers" ,
3- "version" : " 0.5.0 " ,
3+ "version" : " 0.5.1 " ,
44 "imports" : {
55 "effection" : " npm:effection@^3" ,
66 "immutable" : " npm:immutable@^5" ,
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ export * from "./map.ts";
44export * from "./filter.ts" ;
55export * from "./tracker.ts" ;
66export * from "./for-each.ts" ;
7+ export * from "./subject.ts" ;
Original file line number Diff line number Diff line change 11{
22 "name" : " @effectionx/worker" ,
3- "version" : " 0.3.1 " ,
3+ "version" : " 0.3.2 " ,
44 "license" : " MIT" ,
55 "exports" : " ./mod.ts" ,
66 "imports" : {
Original file line number Diff line number Diff line change 11export * from "./worker.ts" ;
22export * from "./worker-main.ts" ;
3+ export * from "./types.ts" ;
You can’t perform that action at this time.
0 commit comments