Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent hoisting of the undefined global variable in browser.js #1534

Merged
merged 1 commit into from Nov 8, 2022
Merged

fix: prevent hoisting of the undefined global variable in browser.js #1534

merged 1 commit into from Nov 8, 2022

Conversation

valeriangalliat
Copy link

Purpose

Because of JS hoisting var global to the top of the file, typeof global in getGlobal() will always be undefined.

This can be a problem when bundling this code and running it in an environment that doesn't have self of window defined but has global.

In practice I ran into this issue after browserifying node-fetch and running the bundle in node --experimental-fetch (just to test).

I can confirm after this fix I can browserify node-fetch and have it expose the global fetch function when run into node --experimental-fetch.

Changes

By using a different variable name like globalObject, we are able to read the "real" typeof global and get access to the global object that way.

@valeriangalliat valeriangalliat changed the title Prevent hoisting of the undefined global variable in browser.js fix: prevent hoisting of the undefined global variable in browser.js Apr 12, 2022
Because of JS hoisting `var global` to the top of the file, `typeof
global` in `getGlobal()` will always be `undefined`.

By using a different variable name like `globalObject`, we are able to
read the "real" `typeof global` and get access to the global object that
way.
@ahaoboy
Copy link

ahaoboy commented Nov 8, 2022

@valeriangalliat This global var is also need to change? or add var global = globalObject?

fetch.Promise = global.Promise;

 fetch.Promise = global.Promise;

@ahaoboy
Copy link

ahaoboy commented Nov 8, 2022

@LinusU @NotMoni @jimmywarting PTAL

Copy link
Member

@LinusU LinusU left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@jimmywarting jimmywarting merged commit 8bb6e31 into node-fetch:2.x Nov 8, 2022
@valeriangalliat valeriangalliat deleted the global-object-hoisting branch December 22, 2022 19:43
@github-actions
Copy link

🎉 This PR is included in version 2.6.8 🎉

The release is available on:

Your semantic-release bot 📦🚀

@jimmywarting
Copy link
Collaborator

in some aftermath i think we should instead have used the globalThis instead but maybe to late now...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants