sjufan84's picture
updated UI
77731d1
raw
history blame
278 Bytes
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
}