Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
537 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { SCHEMES } from "./uri";
|
---|
| 2 | import http from "./schemes/http";
|
---|
| 3 | SCHEMES[http.scheme] = http;
|
---|
| 4 | import https from "./schemes/https";
|
---|
| 5 | SCHEMES[https.scheme] = https;
|
---|
| 6 | import ws from "./schemes/ws";
|
---|
| 7 | SCHEMES[ws.scheme] = ws;
|
---|
| 8 | import wss from "./schemes/wss";
|
---|
| 9 | SCHEMES[wss.scheme] = wss;
|
---|
| 10 | import mailto from "./schemes/mailto";
|
---|
| 11 | SCHEMES[mailto.scheme] = mailto;
|
---|
| 12 | import urn from "./schemes/urn";
|
---|
| 13 | SCHEMES[urn.scheme] = urn;
|
---|
| 14 | import uuid from "./schemes/urn-uuid";
|
---|
| 15 | SCHEMES[uuid.scheme] = uuid;
|
---|
| 16 | export * from "./uri";
|
---|
| 17 | //# sourceMappingURL=index.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.