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 <raisinten@gmail.com>

PR-URL: #41969
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
  • Loading branch information
RaisinTen authored and bengl committed Feb 22, 2022
1 parent 1315f1e commit 68ec8d5
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 @@ -149,7 +149,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 68ec8d5

Please sign in to comment.