Skip to content

Commit 859bb3e

Browse files
committed
fixup! module: make CJS load from ESM loader
1 parent 1d7e50d commit 859bb3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/modules/esm/module_job.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,10 @@ class ModuleJob {
192192
}
193193

194194
runSync() {
195+
assert(this.module instanceof ModuleWrap);
195196
if (this.instantiated !== undefined) {
196-
return this.instantiated;
197+
return { __proto__: null, module: this.module };
197198
}
198-
assert(this.module instanceof ModuleWrap);
199199

200200
// TODO: better handle errors
201201
this.module.instantiate();

0 commit comments

Comments
 (0)