@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
9 lines (7 loc) • 343 B
JavaScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex';
import { FilterAsyncIterable } from '../../asynciterable/operators/filter';
export function filterProto(predicate, thisArg) {
return new FilterAsyncIterable(this, predicate, thisArg);
}
AsyncIterableX.prototype.filter = filterProto;
//# sourceMappingURL=filter.mjs.map