blank project
This commit is contained in:
47
node_modules/ofetch/dist/node.cjs
generated
vendored
Normal file
47
node_modules/ofetch/dist/node.cjs
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
'use strict';
|
||||
|
||||
const http = require('node:http');
|
||||
const https = require('node:https');
|
||||
const nodeFetch = require('node-fetch-native');
|
||||
const fetch$1 = require('./shared/ofetch.d8adb063.cjs');
|
||||
require('destr');
|
||||
require('ufo');
|
||||
|
||||
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
|
||||
|
||||
const http__default = /*#__PURE__*/_interopDefaultCompat(http);
|
||||
const https__default = /*#__PURE__*/_interopDefaultCompat(https);
|
||||
const nodeFetch__default = /*#__PURE__*/_interopDefaultCompat(nodeFetch);
|
||||
|
||||
function createNodeFetch() {
|
||||
const useKeepAlive = JSON.parse(process.env.FETCH_KEEP_ALIVE || "false");
|
||||
if (!useKeepAlive) {
|
||||
return nodeFetch__default;
|
||||
}
|
||||
const agentOptions = { keepAlive: true };
|
||||
const httpAgent = new http__default.Agent(agentOptions);
|
||||
const httpsAgent = new https__default.Agent(agentOptions);
|
||||
const nodeFetchOptions = {
|
||||
agent(parsedURL) {
|
||||
return parsedURL.protocol === "http:" ? httpAgent : httpsAgent;
|
||||
}
|
||||
};
|
||||
return function nodeFetchWithKeepAlive(input, init) {
|
||||
return nodeFetch__default(input, { ...nodeFetchOptions, ...init });
|
||||
};
|
||||
}
|
||||
const fetch = globalThis.fetch ? (...args) => globalThis.fetch(...args) : createNodeFetch();
|
||||
const Headers = globalThis.Headers || nodeFetch.Headers;
|
||||
const AbortController = globalThis.AbortController || nodeFetch.AbortController;
|
||||
const ofetch = fetch$1.createFetch({ fetch, Headers, AbortController });
|
||||
const $fetch = ofetch;
|
||||
|
||||
exports.FetchError = fetch$1.FetchError;
|
||||
exports.createFetch = fetch$1.createFetch;
|
||||
exports.createFetchError = fetch$1.createFetchError;
|
||||
exports.$fetch = $fetch;
|
||||
exports.AbortController = AbortController;
|
||||
exports.Headers = Headers;
|
||||
exports.createNodeFetch = createNodeFetch;
|
||||
exports.fetch = fetch;
|
||||
exports.ofetch = ofetch;
|
||||
Reference in New Issue
Block a user