UNPKG

cross-fetch

Version:

Universal WHATWG Fetch API for Node, Browsers and React Native

12 lines (9 loc) 278 B
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 }