Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 9fd10f9

Browse files
Fixing retry tests and removing Function#bind
1 parent b90653a commit 9fd10f9

32 files changed

+266
-162
lines changed

dist/rx.aggregates.js

+27-2
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,37 @@
143143
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
144144
*/
145145
observableProto.reduce = function (accumulator) {
146-
var seed, hasSeed;
146+
var hasSeed = false, seed, source = this;
147147
if (arguments.length === 2) {
148148
hasSeed = true;
149149
seed = arguments[1];
150150
}
151-
return hasSeed ? this.scan(seed, accumulator).startWith(seed).finalValue() : this.scan(accumulator).finalValue();
151+
return new AnonymousObservable(function (o) {
152+
var hasAccumulation, accumulation, hasValue;
153+
return source.subscribe (
154+
function (x) {
155+
!hasValue && (hasValue = true);
156+
try {
157+
if (hasAccumulation) {
158+
accumulation = accumulator(accumulation, x);
159+
} else {
160+
accumulation = hasSeed ? accumulator(seed, x) : x;
161+
hasAccumulation = true;
162+
}
163+
} catch (e) {
164+
o.onError(e);
165+
return;
166+
}
167+
},
168+
function (e) { o.onError(e); },
169+
function () {
170+
hasValue && o.onNext(accumulation);
171+
!hasValue && hasSeed && o.onNext(seed);
172+
!hasValue && !hasSeed && o.onError(new Error(sequenceContainsNoElements));
173+
o.onCompleted();
174+
}
175+
);
176+
}, source);
152177
};
153178

154179
/**

dist/rx.aggregates.map

+1-1
Large diffs are not rendered by default.

dist/rx.aggregates.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)