requirir () de los módulos ES no es compatible al importar nodo-fetch

// node-fetch v3 recently stopped support for the
// require way of importing it in favor of ES Modules.

// Old:
const fetch = require('node-fetch');

// New:
import fetch from "node-fetch";
RealMyth21