minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / uri-js / src / schemes / https.ts
1 import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
2 import http from "./http";
3
4 const handler:URISchemeHandler = {
5         scheme : "https",
6         domainHost : http.domainHost,
7         parse : http.parse,
8         serialize : http.serialize
9 }
10
11 export default handler;