Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! module, esm: jsdoc for modules files
  • Loading branch information
GeoffreyBooth committed Sep 18, 2023
commit 21833b1a50cb850440228561e97de337d49b9a7d
4 changes: 2 additions & 2 deletions lib/internal/modules/esm/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function registerModule(referrer, registry) {

/**
* Defines the `import.meta` object for a given module.
* @param {Symbol} symbol - Reference to the module.
* @param {symbol} symbol - Reference to the module.
* @param {Record<string, string | Function>} meta - The import.meta object to initialize.
*/
function initializeImportMetaObject(symbol, meta) {
Expand All @@ -149,7 +149,7 @@ function initializeImportMetaObject(symbol, meta) {

/**
* Asynchronously imports a module dynamically using a callback function. The native callback.
* @param {Symbol} symbol - Reference to the module.
* @param {symbol} symbol - Reference to the module.
* @param {string} specifier - The module specifier string.
* @param {Record<string, string>} assertions - The import assertions object.
* @returns {Promise<import('internal/modules/esm/loader.js').ModuleExports>} - The imported module object.
Expand Down