diff --git a/lib/internal/modules/esm/load.js b/lib/internal/modules/esm/load.js index 9661bc716bfa76..98e14455075d2f 100644 --- a/lib/internal/modules/esm/load.js +++ b/lib/internal/modules/esm/load.js @@ -26,32 +26,7 @@ const { /** * @param {URL} url URL to the module - * @param {ESModuleContext} context used to decorate error messages - * @returns {Promise<{ responseURL: string, source: string | BufferView }>} - */ -async function getSource(url, context) { - const { protocol, href } = url; - const responseURL = href; - let source; - if (protocol === 'file:') { - const { readFile: readFileAsync } = require('internal/fs/promises').exports; - source = await readFileAsync(url); - } else if (protocol === 'data:') { - const result = dataURLProcessor(url); - if (result === 'failure') { - throw new ERR_INVALID_URL(responseURL, null); - } - source = BufferFrom(result.body); - } else { - const supportedSchemes = ['file', 'data']; - throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(url, supportedSchemes); - } - return { __proto__: null, responseURL, source }; -} - -/** - * @param {URL} url URL to the module - * @param {ESModuleContext} context used to decorate error messages + * @param {LoadContext} context used to decorate error messages * @returns {{ responseURL: string, source: string | BufferView }} */ function getSourceSync(url, context) { @@ -80,7 +55,7 @@ function getSourceSync(url, context) { * @param {LoadContext} context * @returns {LoadReturn} */ -async function defaultLoad(url, context = kEmptyObject) { +function defaultLoad(url, context = kEmptyObject) { let responseURL = url; let { importAttributes, @@ -110,13 +85,13 @@ async function defaultLoad(url, context = kEmptyObject) { source = null; } else if (format !== 'commonjs') { if (source == null) { - ({ responseURL, source } = await getSource(urlInstance, context)); + ({ responseURL, source } = getSourceSync(urlInstance, context)); context = { __proto__: context, source }; } if (format == null) { // Now that we have the source for the module, run `defaultGetFormat` to detect its format. - format = await defaultGetFormat(urlInstance, context); + format = defaultGetFormat(urlInstance, context); if (format === 'commonjs') { // For backward compatibility reasons, we need to discard the source in diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index 493e9881a466c3..1f6b47857d0d93 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -804,9 +804,9 @@ class ModuleLoader { * if any. * @param {string} url The URL of the module to be loaded. * @param {object} context Metadata about the module - * @returns {Promise<{ format: ModuleFormat, source: ModuleSource }>} + * @returns {Promise<{ format: ModuleFormat, source: ModuleSource }> | { format: ModuleFormat, source: ModuleSource }} */ - async load(url, context) { + load(url, context) { if (loadHooks.length) { // Has module.registerHooks() hooks, use the synchronous variant that can handle both hooks. return this.#loadSync(url, context);