node-polyfill.js 267 B

1234567891011
  1. const fetchNode = require('./node-ponyfill')
  2. const fetch = fetchNode.fetch.bind({})
  3. fetch.polyfill = true
  4. if (!global.fetch) {
  5. global.fetch = fetch
  6. global.Response = fetchNode.Response
  7. global.Headers = fetchNode.Headers
  8. global.Request = fetchNode.Request
  9. }