Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/uri-js/src/schemes/https.ts')
-rw-r--r--node_modules/uri-js/src/schemes/https.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/node_modules/uri-js/src/schemes/https.ts b/node_modules/uri-js/src/schemes/https.ts
new file mode 100644
index 000000000..a19a49428
--- /dev/null
+++ b/node_modules/uri-js/src/schemes/https.ts
@@ -0,0 +1,11 @@
+import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
+import http from "./http";
+
+const handler:URISchemeHandler = {
+ scheme : "https",
+ domainHost : http.domainHost,
+ parse : http.parse,
+ serialize : http.serialize
+}
+
+export default handler; \ No newline at end of file