@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
12 lines (10 loc) • 332 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { reduce } from '../../asynciterable/reduce';
/**
* @ignore
*/
export async function reduceProto(accumulator, ...seed) {
return reduce(this, accumulator, ...seed);
}
AsyncIterableX.prototype.reduce = reduceProto;
//# sourceMappingURL=reduce.mjs.map