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