14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
function r(m) {
|
|
return (m && m.default) || m;
|
|
}
|
|
module.exports = global.fetch =
|
|
global.fetch ||
|
|
(typeof process == "undefined"
|
|
? r(require("unfetch"))
|
|
: function (url, opts) {
|
|
if (typeof url === "string" || url instanceof URL) {
|
|
url = String(url).replace(/^\/\//g, "https://");
|
|
}
|
|
return import("node-fetch").then((m) => r(m)(url, opts));
|
|
});
|