@@ -236,7 +236,6 @@ class DefaultModuleLoader {
236
236
*
237
237
* This method must NOT be renamed: it functions as a dynamic import on a
238
238
* loader module.
239
- *
240
239
* @param {string | string[] } specifiers Path(s) to the module.
241
240
* @param {string } parentURL Path of the parent importing the module.
242
241
* @param {Record<string, string> } importAssertions Validations for the
@@ -286,7 +285,6 @@ class DefaultModuleLoader {
286
285
287
286
/**
288
287
* Resolve the location of the module.
289
- *
290
288
* @param {string } originalSpecifier The specified URL path of the module to
291
289
* be resolved.
292
290
* @param {string } [parentURL] The URL path of the module's parent.
@@ -309,7 +307,6 @@ class DefaultModuleLoader {
309
307
310
308
/**
311
309
* Provide source that is understood by one of Node's translators.
312
- *
313
310
* @param {URL['href'] } url The URL/path of the module to be loaded
314
311
* @param {object } [context] Metadata about the module
315
312
* @returns {Promise<{ format: ModuleFormat, source: ModuleSource }> }
@@ -354,7 +351,6 @@ class CustomizedModuleLoader extends DefaultModuleLoader {
354
351
355
352
/**
356
353
* Resolve the location of the module.
357
- *
358
354
* @param {string } originalSpecifier The specified URL path of the module to
359
355
* be resolved.
360
356
* @param {string } [parentURL] The URL path of the module's parent.
@@ -389,7 +385,6 @@ class CustomizedModuleLoader extends DefaultModuleLoader {
389
385
390
386
/**
391
387
* Provide source that is understood by one of Node's translators.
392
- *
393
388
* @param {URL['href'] } url The URL/path of the module to be loaded
394
389
* @param {object } [context] Metadata about the module
395
390
* @returns {Promise<{ format: ModuleFormat, source: ModuleSource }> }
0 commit comments