Files
mooknote_web/node_modules/webpack/hot/load-http.js
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

8 lines
230 B
JavaScript

/**
* @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");
};