astro-ghostcms/.pnpm-store/v3/files/1a/6b33bfe7b47adcac7aa2e5b547b...

12 lines
267 B
Plaintext

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