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