Observable and how to control results pace
问题 I am looking for an operator that would help me pace the results emitted from an observable, it would look like this : [--A-BC--D-E----------------] [--A----B----C----D----E----] I tried AuditTime() but it does not replay the results that was emitted between intervals, it does something like this : [--A-BC--D-E----------------] [--A----C----E--------------] Thanks for your help. 回答1: I think this should do what you need: const e1 = cold('--A-BC--D-E----------------|'); const expected = '--A--