timeout.js 238 B

123456
  1. import { asyncScheduler } from 'rxjs';
  2. import { timeout as higherOrder } from 'rxjs/operators';
  3. export function timeout(due, scheduler = asyncScheduler) {
  4. return higherOrder(due, scheduler)(this);
  5. }
  6. //# sourceMappingURL=timeout.js.map