const { TextEncoder, TextDecoder } = require("util"); global.TextEncoder = TextEncoder; global.TextDecoder = TextDecoder; const fetch = (...args) => import("node-fetch").then(({ default: fetch }) => fetch(...args)); global.fetch = fetch;