Files
openit/utils/rm/node_modules/isomorphic-fetch/fetch-npm-browserify.js
GitHub Actions cd995d7629 Hello World
2022-06-30 02:18:52 +00:00

7 lines
233 B
JavaScript

// the whatwg-fetch polyfill installs the fetch() function
// on the global object (window or self)
//
// Return that as the export for use in Webpack, Browserify etc.
require('whatwg-fetch');
module.exports = self.fetch.bind(self);