-
Notifications
You must be signed in to change notification settings - Fork 122
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
globalThis
instead of global
#293
globalThis
instead of global
#293
Conversation
I was concerned about your initial I’m unfamiliar with |
It should allow managing all environments. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis |
@jean9696 I notice that it isn't supported on Internet Explorer -- do you know if ApolloClient still supports IE? or can we ignore that detail? (apollo-link-rest is supposed to match ApolloClient's support matrix) |
@fbartho indeed, but I don't think that apollo client supports internet explorer since it's using |
LGTM 👍 |
Shipped in v0.9.0-rc.1 |
Shipped this in v0.9.0! -- Enjoy! https://www.npmjs.com/package/apollo-link-rest/v/0.9.0 |
global
is a node js const see more. We should useglobalThis
here.