summaryrefslogtreecommitdiff
path: root/node_modules/undici/index-fetch.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/undici/index-fetch.js')
-rw-r--r--node_modules/undici/index-fetch.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/node_modules/undici/index-fetch.js b/node_modules/undici/index-fetch.js
new file mode 100644
index 0000000..0d59d25
--- /dev/null
+++ b/node_modules/undici/index-fetch.js
@@ -0,0 +1,16 @@
+'use strict'
+
+const fetchImpl = require('./lib/fetch').fetch
+
+module.exports.fetch = async function fetch (resource) {
+ try {
+ return await fetchImpl(...arguments)
+ } catch (err) {
+ Error.captureStackTrace(err, this)
+ throw err
+ }
+}
+module.exports.FormData = require('./lib/fetch/formdata').FormData
+module.exports.Headers = require('./lib/fetch/headers').Headers
+module.exports.Response = require('./lib/fetch/response').Response
+module.exports.Request = require('./lib/fetch/request').Request