/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
hot/load-http.js
7 строк
230 B
Alexander Akait
fix: universal lazy compilation (#20142)
25 ноя 2025, 19:14
Не верифицирован
25 ноя 2025, 19:14
5b2c4ba
Код
Авторство
О чём код?
/** * @param {boolean} isHTTPS true when need https module, otherwise false * @returns {Promise<import("http") | import("https")>} */ module.exports = function (isHTTPS) { return isHTTPS ? import("https") : import("http"); };