UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

6 lines 238 B
import { asyncScheduler } from 'rxjs'; import { timeout as higherOrder } from 'rxjs/operators'; export function timeout(due, scheduler = asyncScheduler) { return higherOrder(due, scheduler)(this); } //# sourceMappingURL=timeout.js.map