@evil-gauss/core
Version:
evil core library
8 lines • 330 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.urlFormatter = void 0;
const urlFormatter = (protocol, host, port, portProvided) => {
return `${protocol}://${host}${portProvided ? `:${port}` : ''}`;
};
exports.urlFormatter = urlFormatter;
//# sourceMappingURL=url-formatter.function.js.map