UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

14 lines (11 loc) 395 B
"use strict"; const url = require("url"); module.exports = function createDomain(options) { const protocol = options.https ? "https" : "http"; // the formatted domain (url without path) of the webpack server return options.public ? `${protocol}://${options.public}` : url.format({ protocol: protocol, hostname: options.host, port: options.socket ? 0 : options.port.toString() }); };