@innova2/url-builder
Version:
A lightweight library with many feature to easy build URLs
13 lines (12 loc) • 447 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UrlComponent = void 0;
var UrlComponent;
(function (UrlComponent) {
UrlComponent["SCHEME"] = "scheme";
UrlComponent["HOST"] = "host";
UrlComponent["PORT"] = "port";
UrlComponent["PATHS"] = "paths";
UrlComponent["PARAMS"] = "params";
UrlComponent["QUERY"] = "query";
})(UrlComponent = exports.UrlComponent || (exports.UrlComponent = {}));