Vendoring node_modules

This commit is contained in:
Chris Raynor 2020-09-13 10:27:23 +01:00
parent 0b64878cfe
commit 0579b4d27d
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
7 changed files with 67 additions and 31 deletions

4
node_modules/node-fetch/browser.js generated vendored
View file

@ -16,7 +16,9 @@ var global = getGlobal();
module.exports = exports = global.fetch;
// Needed for TypeScript and Webpack.
exports.default = global.fetch.bind(global);
if (global.fetch) {
exports.default = global.fetch.bind(global);
}
exports.Headers = global.Headers;
exports.Request = global.Request;