rxjs-compat
Version:
[](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat
7 lines • 327 B
JavaScript
import { asyncScheduler } from 'rxjs';
import { timeoutWith as higherOrder } from 'rxjs/operators';
export function timeoutWith(due, withObservable, scheduler) {
if (scheduler === void 0) { scheduler = asyncScheduler; }
return higherOrder(due, withObservable, scheduler)(this);
}
//# sourceMappingURL=timeoutWith.js.map