UNPKG

nitropage

Version:

A free and open source, extensible visual page builder based on SolidStart.

5 lines (4 loc) 213 B
export const getHttpHost = function (url: URL, domain?: string | null) { const port = ["80", "443", ""].includes(url.port) ? "" : ":" + url.port; return `${url.protocol}//${domain || url.hostname}${port}`; };