Files
test/_node_modules/node-fetch-native/lib/index.cjs
2026-02-20 16:06:40 +09:00

12 lines
216 B
JavaScript

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