Files
install-nix-action/node_modules/uri-js/src/schemes/https.ts
Domen Kožar 49df04613e v7
2020-02-24 13:29:22 +01:00

11 lines
258 B
TypeScript

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;