blob: 43ec50fbcb01585131bc210f95e69321e59feff4 [file] [log] [blame]
var fetchNode = require('./node-ponyfill')
var 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
}