main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
499 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 |
|
---|
3 | exports.__esModule = true;
|
---|
4 | exports.fetch = exports.Response = exports.Request = exports.Headers = exports.FormData = exports.File = exports.Blob = void 0;
|
---|
5 | // we're targeting browsers that already support fetch API
|
---|
6 | const {
|
---|
7 | fetch,
|
---|
8 | Response,
|
---|
9 | Headers,
|
---|
10 | Request,
|
---|
11 | FormData,
|
---|
12 | File,
|
---|
13 | Blob
|
---|
14 | } = globalThis;
|
---|
15 | exports.Blob = Blob;
|
---|
16 | exports.File = File;
|
---|
17 | exports.FormData = FormData;
|
---|
18 | exports.Request = Request;
|
---|
19 | exports.Headers = Headers;
|
---|
20 | exports.Response = Response;
|
---|
21 | exports.fetch = fetch; |
---|
Note:
See
TracBrowser
for help on using the repository browser.