版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
216 B

  1. const nodeFetch = require("../dist/index.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;