Skip to content

Commit 5535c2e

Browse files
bbosiljcicRichienb
authored andcommitted
fix: Check for global.fetch before binding it (#674)
1 parent 1d5778a commit 5535c2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

browser.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ var global = getGlobal();
1616
module.exports = exports = global.fetch;
1717

1818
// Needed for TypeScript and Webpack.
19-
exports.default = global.fetch.bind(global);
19+
if (global.fetch) {
20+
exports.default = global.fetch.bind(global);
21+
}
2022

2123
exports.Headers = global.Headers;
2224
exports.Request = global.Request;

0 commit comments

Comments
 (0)