Skip to content

Commit ec93a53

Browse files
apapirovskiMylesBorins
authored andcommitted
lib: fix extraneous space in module.js
An extra space was not caught by the linter due to what appears to be a bug in eslint 4.3.0 — remove it. PR-URL: #16199 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 25ef372 commit ec93a53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ Module.prototype.load = function(filename) {
551551
ESMLoader.moduleMap.set(urlString,
552552
new ModuleJob(ESMLoader, url, async () => ctx));
553553
} else {
554-
const job = ESMLoader.moduleMap.get(urlString);
554+
const job = ESMLoader.moduleMap.get(urlString);
555555
if (job.reflect)
556556
job.reflect.exports.default.set(this.exports);
557557
}

0 commit comments

Comments
 (0)