native.cjs 217 B

1234567891011
  1. const nodeFetch = require("../dist/native.cjs");
  2. function fetch(input, options) {
  3. return nodeFetch.fetch(input, options);
  4. }
  5. for (const key in nodeFetch) {
  6. fetch[key] = nodeFetch[key];
  7. }
  8. module.exports = fetch;