I have an observable stream which emits numbers, I want another stream that emits all 1's that are not closely followed by a 2 (within say 200ms), so for example from this source stream:
(every character is 100ms)
1...12...112...11121...
The result should be:
..1.......1.....11...1.
How would I do that using rxjs@^6.6.7?