minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / uri-js / src / index.ts
1 import { SCHEMES } from "./uri";
2
3 import http from "./schemes/http";
4 SCHEMES[http.scheme] = http;
5
6 import https from "./schemes/https";
7 SCHEMES[https.scheme] = https;
8
9 import mailto from "./schemes/mailto";
10 SCHEMES[mailto.scheme] = mailto;
11
12 import urn from "./schemes/urn";
13 SCHEMES[urn.scheme] = urn;
14
15 import uuid from "./schemes/urn-uuid";
16 SCHEMES[uuid.scheme] = uuid;
17
18 export * from "./uri";