TreasureTrails/node_modules/node-fetch-native/lib/native.cjs
2026-03-18 09:02:21 -05:00

11 lines
217 B
JavaScript

const nodeFetch = require("../dist/native.cjs");
function fetch(input, options) {
return nodeFetch.fetch(input, options);
}
for (const key in nodeFetch) {
fetch[key] = nodeFetch[key];
}
module.exports = fetch;