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