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