/
eapostnova
/
2026-1--study--mathmod
Обзор
Документация
Войти
/
eapostnova
/
2026-1--study--mathmod
Код
Запросы
0
Задачи
Пакеты
0
Релизы
6
Аналитика
Безопасность
develop
node_modules/rxjs/internal/operators/timeout.js
12 строк
552 B
Елизавета Постнова
feat(lab): lab04
24 мар 2026, 02:59
Верифицирован
24 мар 2026, 02:59
7783508
Код
Авторство
О чём код?
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var async_1 = require("../scheduler/async"); var TimeoutError_1 = require("../util/TimeoutError"); var timeoutWith_1 = require("./timeoutWith"); var throwError_1 = require("../observable/throwError"); function timeout(due, scheduler) { if (scheduler === void 0) { scheduler = async_1.async; } return timeoutWith_1.timeoutWith(due, throwError_1.throwError(new TimeoutError_1.TimeoutError()), scheduler); } exports.timeout = timeout; //# sourceMappingURL=timeout.js.map