mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 19:12:50 +00:00
8 lines
230 B
JavaScript
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");
|
|
};
|