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