source: trip-planner-front/node_modules/uri-js/dist/esnext/index.js@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 537 bytes
Line 
1import { SCHEMES } from "./uri";
2import http from "./schemes/http";
3SCHEMES[http.scheme] = http;
4import https from "./schemes/https";
5SCHEMES[https.scheme] = https;
6import ws from "./schemes/ws";
7SCHEMES[ws.scheme] = ws;
8import wss from "./schemes/wss";
9SCHEMES[wss.scheme] = wss;
10import mailto from "./schemes/mailto";
11SCHEMES[mailto.scheme] = mailto;
12import urn from "./schemes/urn";
13SCHEMES[urn.scheme] = urn;
14import uuid from "./schemes/urn-uuid";
15SCHEMES[uuid.scheme] = uuid;
16export * from "./uri";
17//# sourceMappingURL=index.js.map
Note: See TracBrowser for help on using the repository browser.