cujojs / most

Ultra-high performance reactive programming
MIT License
3.49k stars 231 forks source link

Receiving two end signals #368

Closed Antares007 closed 7 years ago

Antares007 commented 7 years ago

most.of(42).takeUntil(most.of(42).delay(1000)).subscribe({ next: (e) => console.log('next:', e), error: (err) => console.log('err:', err), complete: () => console.log('end!') }) next: 42 end! end!

briancavalier commented 7 years ago

Thanks @Antares007. I see the issue. PR coming soon.