-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(reduce): add thisArg parameter #1001
Conversation
09642b0
to
d0ec7b3
Compare
LGTM |
Adds thisArg as third argument to have symmetry with native Array.prototype.reduce(). Relates to ReactiveX#878 and ReactiveX#996.
d0ec7b3
to
ef890a8
Compare
Just updated with a small bugfix on ScalarObservable::reduce() and adding a test case to cover it. |
Looks good to me too. merging.. |
@kwonoj please do not merge. There is no |
@mattpodwysocki OK, holding. any concerns? |
@kwonoj yes, see above comment. This is an unneeded PR. |
Fair enough. I think I saw |
Whew, appreciate @mattpodwysocki for catching and pointing this out. I could make mistake. |
👍 thanks @mattpodwysocki |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Adds
thisArg
as the third argument to have symmetry with native Array.prototype.reduce().Relates to #878 and #996.