@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
12 lines (10 loc) • 377 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js';
import { flatMap } from '../../asynciterable/operators/flatmap.js';
/**
* @ignore
*/
export function flatMapProto(selector, concurrent = Infinity, thisArg) {
return flatMap(selector, concurrent, thisArg)(this);
}
AsyncIterableX.prototype.flatMap = flatMapProto;
//# sourceMappingURL=flatmap.js.map