RxJS version:
[email protected]
Code to reproduce:
jsbin example
var source = Rx.Observable.interval(100)
source
.bufferTime(1000)
.take(2)
.subscribe(x => console.log(x))
Expected behavior:
Should complete without any errors.
Actual behavior:
Throws an error on complete:
TypeError: Cannot read property 'splice' of null
Additional information:
Does work in RxJS 4 - jsbin example