Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / operators / timeout.js
1 import { async } from '../scheduler/async';
2 import { TimeoutError } from '../util/TimeoutError';
3 import { timeoutWith } from './timeoutWith';
4 import { throwError } from '../observable/throwError';
5 export function timeout(due, scheduler = async) {
6     return timeoutWith(due, throwError(new TimeoutError()), scheduler);
7 }
8 //# sourceMappingURL=timeout.js.map