Skip to content

Commit

Permalink
lib: stop installing fetch if no_browser_globals is true
Browse files Browse the repository at this point in the history
Fixes: #41816
Signed-off-by: Darshan Sen <[email protected]>

PR-URL: #41969
Reviewed-By: Benjamin Gruenbaum <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Nitzan Uziely <[email protected]>
Reviewed-By: Filip Skokan <[email protected]>
Reviewed-By: Mestery <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
  • Loading branch information
RaisinTen authored Feb 16, 2022
1 parent 34cf563 commit a82c1a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/internal/bootstrap/pre_execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ function setupWarningHandler() {

// https://fetch.spec.whatwg.org/
function setupFetch() {
if (!getOptionValue('--experimental-fetch')) {
if (process.config.variables.node_no_browser_globals ||
!getOptionValue('--experimental-fetch')) {
return;
}

Expand Down

0 comments on commit a82c1a1

Please sign in to comment.