版博士V2.0程序
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011
  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;