We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
how to validate if the global.fetch is the native node fetch or undici fetch ?
The text was updated successfully, but these errors were encountered:
is there a way to import native node fetch explicit instead of from global ?
Sorry, something went wrong.
global.fetch is undici's fetch; just versions can vary between the one bundled in Node and the one available through npm.
global.fetch
undici
npm
You can disable native fetch by a flag and use a polyfill to inject another fetch version
Is there a symbol or something to validate this? That fetch is undici and also the version of it?
No branches or pull requests
how to validate if the global.fetch is the native node fetch or undici fetch ?
The text was updated successfully, but these errors were encountered: