fix: do not error on null exports in ESM loader (#37009)
This commit is contained in:
parent
4bc6b15f53
commit
58beec1da2
1 changed files with 8 additions and 4 deletions
|
@ -51,7 +51,7 @@ index 7cec4e9a3e3675ba75d66a44ed4e142d13ca1821..0c7aad193442a7e5cab62638441969a7
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js
|
diff --git a/lib/internal/modules/esm/translators.js b/lib/internal/modules/esm/translators.js
|
||||||
index 6f25b2e67ab77613c6ed63c227bb875d5461f45f..d1527b859bbea15fdf30622fc8f2700bde5b4591 100644
|
index 6f25b2e67ab77613c6ed63c227bb875d5461f45f..010fa8f78a21a8146879849e2e887332e2694e51 100644
|
||||||
--- a/lib/internal/modules/esm/translators.js
|
--- a/lib/internal/modules/esm/translators.js
|
||||||
+++ b/lib/internal/modules/esm/translators.js
|
+++ b/lib/internal/modules/esm/translators.js
|
||||||
@@ -154,7 +154,7 @@ translators.set('commonjs', async function commonjsStrategy(url, source,
|
@@ -154,7 +154,7 @@ translators.set('commonjs', async function commonjsStrategy(url, source,
|
||||||
|
@ -63,15 +63,19 @@ index 6f25b2e67ab77613c6ed63c227bb875d5461f45f..d1527b859bbea15fdf30622fc8f2700b
|
||||||
[...exportNames] : ['default', ...exportNames];
|
[...exportNames] : ['default', ...exportNames];
|
||||||
|
|
||||||
return new ModuleWrap(url, undefined, namesWithDefault, function() {
|
return new ModuleWrap(url, undefined, namesWithDefault, function() {
|
||||||
@@ -173,7 +173,7 @@ translators.set('commonjs', async function commonjsStrategy(url, source,
|
@@ -173,9 +173,9 @@ translators.set('commonjs', async function commonjsStrategy(url, source,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- for (const exportName of exportNames) {
|
- for (const exportName of exportNames) {
|
||||||
|
- if (!ObjectPrototypeHasOwnProperty(exports, exportName) ||
|
||||||
|
- exportName === 'default')
|
||||||
+ for (const exportName of namesWithDefault) {
|
+ for (const exportName of namesWithDefault) {
|
||||||
if (!ObjectPrototypeHasOwnProperty(exports, exportName) ||
|
+ if (exportName === 'default' ||
|
||||||
exportName === 'default')
|
+ !ObjectPrototypeHasOwnProperty(exports, exportName))
|
||||||
continue;
|
continue;
|
||||||
|
// We might trigger a getter -> dont fail.
|
||||||
|
let value;
|
||||||
diff --git a/lib/internal/url.js b/lib/internal/url.js
|
diff --git a/lib/internal/url.js b/lib/internal/url.js
|
||||||
index 40b25f6890b5db721923ba2e9cc351e514ca22bc..288f3253b4c686d1b061dfcdf18dc95794943d87 100644
|
index 40b25f6890b5db721923ba2e9cc351e514ca22bc..288f3253b4c686d1b061dfcdf18dc95794943d87 100644
|
||||||
--- a/lib/internal/url.js
|
--- a/lib/internal/url.js
|
||||||
|
|
Loading…
Add table
Reference in a new issue