aimpress-chatbot/node_modules/cross-fetch/dist/node-polyfill.js
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00

11 lines
278 B
JavaScript

const fetchNode = require('./node-ponyfill')
if (!global.fetch) {
const fetch = fetchNode.fetch.bind({})
global.fetch = fetch
global.fetch.polyfill = true
global.Response = fetchNode.Response
global.Headers = fetchNode.Headers
global.Request = fetchNode.Request
}