/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v17.0.2
fixtures/blocks/delay.js
14 строк
331 B
Dan Abramov
[Blocks] Add Shell to Fixture (#18803)
04 май 2020, 03:59
Не верифицирован
04 май 2020, 03:59
f6fcae5
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ module.exports = (req, res, next) => { if (req.query.delay) { setTimeout(next, Number(req.query.delay)); } else { next(); } };