Open larsnystrom opened 8 years ago
The documentation lists three arguments for Rx.Observable.prototype.groupBy(keySelector, [elementSelector], [comparer]), but there are only two arguments in the code: https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/groupby.js
Rx.Observable.prototype.groupBy(keySelector, [elementSelector], [comparer])
The third argument was removed in 73cbf847512b794a69dddb02bbb4f59ce279c384.
Same goes for groupByUntil https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/groupbyuntil.md
groupByUntil
+1 this cost me some time :-( also i need a comparer
The documentation lists three arguments for
Rx.Observable.prototype.groupBy(keySelector, [elementSelector], [comparer])
, but there are only two arguments in the code: https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/linq/observable/groupby.jsThe third argument was removed in 73cbf847512b794a69dddb02bbb4f59ce279c384.